mirror of
https://github.com/remvze/moodist.git
synced 2025-12-18 17:34:17 +00:00
style: change tool labels
This commit is contained in:
parent
fdd23899f1
commit
320d05d414
3 changed files with 4 additions and 4 deletions
|
|
@ -15,7 +15,7 @@ export function Notepad({ open }: NotepadProps) {
|
||||||
<Item
|
<Item
|
||||||
active={!!note.length}
|
active={!!note.length}
|
||||||
icon={<MdNotes />}
|
icon={<MdNotes />}
|
||||||
label="Notepad"
|
label="Simple Notepad"
|
||||||
shortcut="Shift + N"
|
shortcut="Shift + N"
|
||||||
onClick={open}
|
onClick={open}
|
||||||
/>
|
/>
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,7 @@ export function Pomodoro({ open }: PomodoroProps) {
|
||||||
<Item
|
<Item
|
||||||
active={running}
|
active={running}
|
||||||
icon={<MdOutlineAvTimer />}
|
icon={<MdOutlineAvTimer />}
|
||||||
label="Pomodoro"
|
label="Pomodoro Timer"
|
||||||
shortcut="Shift + P"
|
shortcut="Shift + P"
|
||||||
onClick={open}
|
onClick={open}
|
||||||
/>
|
/>
|
||||||
|
|
|
||||||
|
|
@ -31,11 +31,11 @@ export function ShortcutsModal({ onClose, show }: ShortcutsModalProps) {
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
keys: ['Shift', 'N'],
|
keys: ['Shift', 'N'],
|
||||||
label: 'Notepad',
|
label: 'Simple Notepad',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
keys: ['Shift', 'P'],
|
keys: ['Shift', 'P'],
|
||||||
label: 'Pomodoro',
|
label: 'Pomodoro Timer',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
keys: ['Shift', 'T'],
|
keys: ['Shift', 'T'],
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue