Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions apps/dashboard/src/routes/(app)/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -185,15 +185,16 @@
</DropdownMenu.Trigger>
<DropdownMenu.Content align="end" class="w-44 border-border bg-background">
<DropdownMenu.Item
class="gap-2 text-sm text-muted-foreground focus:bg-muted focus:text-foreground"
class="gap-2 text-sm text-muted-foreground"
onclick={() => openProject(project, 'settings')}
>
<Settings class="size-4" />
Project Settings
</DropdownMenu.Item>
<DropdownMenu.Separator class="bg-muted" />
<DropdownMenu.Item
class="gap-2 text-sm text-red-400 focus:bg-red-950/40 focus:text-red-300"
variant="destructive"
class="gap-2 text-sm"
onclick={() => openDeleteDialog(project)}
>
<Trash2 class="size-4" />
Expand Down