1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2025-01-31 11:22:06 +00:00

Fixed: Trailing space in keyboardShortcuts killing build

This commit is contained in:
Qstick 2018-09-06 23:07:43 -04:00
parent 034ef2ad99
commit d5b60957d9

View file

@ -67,7 +67,7 @@ function keyboardShortcuts(WrappedComponent) {
stopCallback = (event, element, combo) => {
const binding = this._mousetrapBindings[combo];
if (!binding || binding.isGlobal) {
if (!binding || binding.isGlobal) {
return false;
}