Skip to content

Commit

Permalink
feat: add new dropdown ui
Browse files Browse the repository at this point in the history
  • Loading branch information
HugoRCD committed Mar 31, 2024
1 parent 56de875 commit ee0f459
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/app/components/DropdownMenu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ const items = [
v-if="user"
:items="items"
:ui="{
background: 'bg-white dark:bg-neutral-900',
background: 'backdrop-blur-md border dark:bg-gray-950/50 dark:border-gray-400/10 bg-white',
ring: 'ring-1 ring-neutral-100 dark:ring-neutral-800',
divide: 'divide-y divide-neutral-100 dark:divide-neutral-800',
item: {
Expand Down
Empty file.
1 change: 1 addition & 0 deletions apps/app/pages/app/project/[projectId]/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ const {data: project, status, refresh} = useFetch(`/api/project/${projectId}`, {
method: 'GET',
watch: false,
})
provide('project', project)
provide('status', status)
provide('refresh', refresh)
Expand Down
Binary file modified bun.lockb
Binary file not shown.
1 change: 0 additions & 1 deletion packages/shelve-types/src/Project.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ export type CreateProjectInput = {
repository: string;
projectManager: string;
homepage: string;
users: User[];
team?: Team;
};

Expand Down

0 comments on commit ee0f459

Please sign in to comment.