Skip to content

Commit

Permalink
bugfix: navbar not showing up on search playground
Browse files Browse the repository at this point in the history
  • Loading branch information
skeptrunedev authored and fedhacks committed Oct 4, 2024
1 parent 8548938 commit 6dbd8d2
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions frontends/search/src/components/Atoms/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,43 +53,43 @@ export const Navbar = () => {
</Show>
</div>

<div class="flex items-center justify-end space-x-1 sm:space-x-4">
<div class="hidden items-center justify-end space-x-1 sm:space-x-4 md:flex">
<a
href={`${dashboardUrl}/dataset/${orgDatasetParams()}`}
target="_blank"
class="min-[420px]:text-lg min-[920px]:block hidden text-center"
class="min-[420px]:text-lg min-[920px]:block text-center"
>
Dashboard
</a>
<a
href="https://docs.trieve.ai/api-reference"
target="_blank"
class="min-[420px]:text-lg min-[920px]:block hidden text-center"
class="min-[420px]:text-lg min-[920px]:block text-center"
>
API Docs
</a>
<a
href={`/?dataset=${datasetAndUserContext.currentDataset?.()
?.dataset.id}`}
class="min-[420px]:text-lg min-[920px]:block hidden text-center"
class="min-[420px]:text-lg min-[920px]:block text-center"
>
Search Chunks
</a>
<a
href={`/group?dataset=${currentDatasetId()}`}
class="min-[420px]:text-lg min-[920px]:block hidden text-center"
class="min-[420px]:text-lg min-[920px]:block text-center"
>
Groups
</a>
<a
href={`/create?dataset=${currentDatasetId()}`}
class="min-[420px]:text-lg min-[920px]:block hidden text-center"
class="min-[420px]:text-lg min-[920px]:block text-center"
>
Create Chunk
</a>
<a
href={`/upload?dataset=${currentDatasetId()}`}
class="min-[420px]:text-lg min-[920px]:block hidden text-center"
class="min-[420px]:text-lg min-[920px]:block text-center"
>
Upload file(s)
</a>
Expand Down

0 comments on commit 6dbd8d2

Please sign in to comment.