mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Fix: fix hotkey arrows (#8583)
This commit is contained in:
parent
51b0f6e325
commit
b0dd77bfd8
@ -4985,7 +4985,7 @@
|
||||
<source>Keyboard shortcuts</source>
|
||||
<context-group purpose="location">
|
||||
<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>
|
||||
</trans-unit>
|
||||
<trans-unit id="4814285799071780083" datatype="html">
|
||||
|
@ -29,7 +29,7 @@ describe('HotkeyDialogComponent', () => {
|
||||
})
|
||||
|
||||
it('should format keys', () => {
|
||||
expect(component.formatKey('control.a')).toEqual('⌃ + a') // ⌃ + a
|
||||
expect(component.formatKey('control.a', true)).toEqual('⌘ + a') // ⌘ + a
|
||||
expect(component.formatKey('control.a')).toEqual('⌃ a') // ⌃ + a
|
||||
expect(component.formatKey('control.a', true)).toEqual('⌘ a') // ⌘ + a
|
||||
})
|
||||
})
|
||||
|
@ -9,6 +9,8 @@ const SYMBOLS = {
|
||||
right: '→', // →
|
||||
up: '↑', // ↑
|
||||
down: '↓', // ↓
|
||||
arrowleft: '←', // ←
|
||||
arrowright: '→', // →
|
||||
}
|
||||
|
||||
@Component({
|
||||
@ -33,6 +35,6 @@ export class HotkeyDialogComponent {
|
||||
return key
|
||||
.split('.')
|
||||
.map((k) => SYMBOLS[k] || k)
|
||||
.join(' + ')
|
||||
.join(' ')
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user