Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 6 additions & 0 deletions .changeset/empty-cats-yell.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
'@keystatic/core': patch
---

Fix tooltip on list buttons in editor incorrectly showing the keyboard
shortcut requiring cmd/ctrl
3 changes: 3 additions & 0 deletions .github/actions/setup-deps/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ name: 'Setup Dependencies'
runs:
using: 'composite'
steps:
- run: npm install -g [email protected]
shell: bash

- run: corepack enable
shell: bash

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -706,7 +706,7 @@ function ListButtons() {
</EditorToolbarItem>
<Tooltip>
<Text>{item.label}</Text>
<Kbd meta>{item.shortcut}</Kbd>
<Kbd>{item.shortcut}</Kbd>
</Tooltip>
</TooltipTrigger>
))}
Expand Down