Skip to content

Commit

Permalink
fix item labels
Browse files Browse the repository at this point in the history
  • Loading branch information
zaknesler committed Jun 3, 2024
1 parent 9fb364c commit 2a4dae9
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions ui/src/components/menus/menu-feed.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,8 @@ export const FeedMenu: Component<FeedMenuProps> = props => {

return (
<Menu {...local} size="sm">
<Menu.Item disabled icon={HiSolidPencilSquare}>
Rename
</Menu.Item>
<Menu.Item disabled icon={HiSolidTrash}>
Delete
</Menu.Item>
<Menu.Item label="Rename" disabled icon={HiSolidPencilSquare} />
<Menu.Item label="Delete" disabled icon={HiSolidTrash} />
</Menu>
);
};

0 comments on commit 2a4dae9

Please sign in to comment.