Skip to content

Commit

Permalink
release(toolbar): v0.5.4
Browse files Browse the repository at this point in the history
  • Loading branch information
surunzi committed Mar 4, 2024
1 parent 6469a30 commit ab2f610
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion index.json
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@
},
"toolbar": {
"react": true,
"version": "0.5.3",
"version": "0.5.4",
"style": true,
"icon": false,
"test": true,
Expand Down
2 changes: 1 addition & 1 deletion src/toolbar/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "toolbar",
"version": "0.5.3",
"version": "0.5.4",
"description": "Application toolbar",
"luna": {
"react": true
Expand Down
4 changes: 3 additions & 1 deletion src/toolbar/react.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,9 @@ interface IToolbarButtonProps extends IToolbarItemProps {
state?: IButtonState
}

export const LunaToolbarButton: FC<IToolbarButtonProps> = (props) => {
export const LunaToolbarButton: FC<PropsWithChildren<IToolbarButtonProps>> = (
props
) => {
const toolbarButton = useRef<ToolbarButton>()
const forceUpdate = useForceUpdate()

Expand Down

0 comments on commit ab2f610

Please sign in to comment.