We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8886438 commit 61fd677Copy full SHA for 61fd677
app/server/static/components/annotationMixin.js
@@ -122,7 +122,7 @@ export default {
122
},
123
124
replaceNull(shortcut) {
125
- if (shortcut === null) {
+ if (shortcut == null) {
126
shortcut = '';
127
}
128
shortcut = shortcut.split(' ');
app/server/static/components/filter.js
@@ -1,5 +1,5 @@
1
export function simpleShortcut(shortcut) {
2
- let simplified = shortcut === null ? '' : shortcut;
+ let simplified = shortcut == null ? '' : shortcut;
3
simplified = simplified.replace('ctrl', 'C');
4
simplified = simplified.replace('shift', 'S');
5
simplified = simplified.split(' ').join('-');
0 commit comments