This commit is contained in:
Eugene Pankov 2021-07-06 21:56:52 +02:00
parent 4e667edf9f
commit 93a89e3c86

View File

@ -54,7 +54,7 @@ export class HotkeysService {
// deprecated
this.hotkey$.subscribe(h => this.matchedHotkey.emit(h))
this.matchedHotkey.subscribe = deprecate(this.matchedHotkey.subscribe, 'matchedHotkey is deprecated, use hotkey$')
this.matchedHotkey.subscribe = deprecate(s => this.matchedHotkey.subscribe(s), 'matchedHotkey is deprecated, use hotkey$')
}
/**