We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 985c429 commit a49a929Copy full SHA for a49a929
src/component/toolbar/toolbarMenu.tsx
@@ -42,14 +42,22 @@ const IMPORT_MENU: ToolbarPopoverMenuItem[] = [
42
const EXPORT_MENU: ToolbarPopoverMenuItem[] = [
43
{
44
icon: <FaFileDownload />,
45
- text: 'Save data (Press Ctrl+s)',
+ text: 'Save data',
46
+ tooltip: {
47
+ title: 'Save data',
48
+ shortcuts: ['CTRL', 's'],
49
+ },
50
data: {
51
id: 'json',
52
},
53
54
55
- text: 'Save as (Press Ctrl+Shift+s)',
56
+ text: 'Save as',
57
58
+ title: 'Save as',
59
+ shortcuts: ['CTRL', '⇧', 's'],
60
61
62
id: 'advance_save',
63
0 commit comments