feat: Ctrl+S-Shortcut zum Ausführen des Update-Dienstes hinzufügen
This commit is contained in:
parent
7de506d390
commit
7bbd9aacd6
@ -63,6 +63,12 @@ export class UserComponent extends BasePageComponent implements AfterViewInit {
|
||||
}
|
||||
}
|
||||
|
||||
@HostListener('window:keydown.control.s', ['$event'])
|
||||
handleCtrlS(event: KeyboardEvent) {
|
||||
event.preventDefault();
|
||||
this.updateService.executeAll();
|
||||
}
|
||||
|
||||
@HostListener('window:keydown.delete', ['$event'])
|
||||
handleDelete(event: KeyboardEvent) {
|
||||
this.deleteItem();
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user