fix: Ctrl+R Tastenkombination funktioniert jetzt korrekt mit dem Refresh-Service
This commit is contained in:
@@ -36,6 +36,12 @@ export class BasePageComponent {
|
||||
this.updateService.executeAll();
|
||||
}
|
||||
|
||||
@HostListener('window:keydown.control.r', ['$event'])
|
||||
protected handleCtrlR(event: KeyboardEvent) {
|
||||
event.preventDefault();
|
||||
this.refreshService.executeAll();
|
||||
}
|
||||
|
||||
@HostListener('window:keydown.delete', ['$event'])
|
||||
protected handleDelete(event: KeyboardEvent) {
|
||||
this.handleDeleteRequest();
|
||||
|
||||
Reference in New Issue
Block a user