Fix: fix hotkey arrows (#8583)

This commit is contained in:
shamoon 2025-01-01 21:10:56 -08:00 committed by GitHub
parent 51b0f6e325
commit b0dd77bfd8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 6 additions and 4 deletions

View File

@ -4985,7 +4985,7 @@
<source>Keyboard shortcuts</source> <source>Keyboard shortcuts</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/hotkey-dialog/hotkey-dialog.component.ts</context> <context context-type="sourcefile">src/app/components/common/hotkey-dialog/hotkey-dialog.component.ts</context>
<context context-type="linenumber">20</context> <context context-type="linenumber">22</context>
</context-group> </context-group>
</trans-unit> </trans-unit>
<trans-unit id="4814285799071780083" datatype="html"> <trans-unit id="4814285799071780083" datatype="html">

View File

@ -29,7 +29,7 @@ describe('HotkeyDialogComponent', () => {
}) })
it('should format keys', () => { it('should format keys', () => {
expect(component.formatKey('control.a')).toEqual('&#8963; + a') // ⌃ + a expect(component.formatKey('control.a')).toEqual('&#8963; a') // ⌃ + a
expect(component.formatKey('control.a', true)).toEqual('&#8984; + a') // ⌘ + a expect(component.formatKey('control.a', true)).toEqual('&#8984; a') // ⌘ + a
}) })
}) })

View File

@ -9,6 +9,8 @@ const SYMBOLS = {
right: '&#8594;', // → right: '&#8594;', // →
up: '&#8593;', // ↑ up: '&#8593;', // ↑
down: '&#8595;', // ↓ down: '&#8595;', // ↓
arrowleft: '&#8592;', // ←
arrowright: '&#8594;', // →
} }
@Component({ @Component({
@ -33,6 +35,6 @@ export class HotkeyDialogComponent {
return key return key
.split('.') .split('.')
.map((k) => SYMBOLS[k] || k) .map((k) => SYMBOLS[k] || k)
.join(' + ') .join(' ')
} }
} }