Skip to content

Commit

Permalink
updated: contextmenu & package version
Browse files Browse the repository at this point in the history
  • Loading branch information
mvriu5 committed May 10, 2024
1 parent 9935eb4 commit 2ea2e94
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion components/contextmenu/ContextMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ ContextMenuIcon.displayName = "ContextMenuIcon";


const ContextMenuItem = React.forwardRef<HTMLDivElement, ContextMenuItemProps>(({ title, shortcut, className, ...props }, ref) => (
<div className={cn("group cursor-pointer rounded-lg hover:bg-selected hover:text-white p-2 flex justify-between items-center", className)} ref={ref} {...props}>
<div className={cn("group cursor-pointer rounded-lg hover:bg-selected hover:text-white p-2 flex justify-normal items-center", className)} ref={ref} {...props}>
{props.children}
{title}
{shortcut &&
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@marraph/daisy",
"version": "0.0.4",
"version": "0.0.5",
"description": "Daisy is a component library for the marraph organisation",
"scripts": {
"dev": "next dev",
Expand Down

0 comments on commit 2ea2e94

Please sign in to comment.