File tree Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ export default {
78
78
})
79
79
},
80
80
dataTypeTooltip () {
81
- return ` <span class="keyboard">${ this .$keys .ctrl } </span> + <i class="material-icons">mouse</i>: Collapse All<br><span class="keyboard">Shift </span> + <i class="material-icons">mouse</i>: Expand All`
81
+ return ` <span class="keyboard">${ this .$keys .ctrl } </span> + <i class="material-icons">mouse</i>: Collapse All<br><span class="keyboard">${ this . $keys . shift } </span> + <i class="material-icons">mouse</i>: Expand All`
82
82
}
83
83
},
84
84
methods: {
Original file line number Diff line number Diff line change @@ -9,7 +9,9 @@ import { parse } from '../util'
9
9
const isChrome = typeof chrome !== 'undefined' && ! ! chrome . devtools
10
10
const isMac = navigator . platform === 'MacIntel'
11
11
const keys = {
12
- ctrl : isMac ? '⌘' : 'Ctrl'
12
+ ctrl : isMac ? '⌘' : 'Ctrl' ,
13
+ shift : 'Shift' ,
14
+ alt : isMac ? '⌥' : 'Alt'
13
15
}
14
16
15
17
Object . defineProperties ( Vue . prototype , {
Original file line number Diff line number Diff line change @@ -238,8 +238,8 @@ export default {
238
238
quickEditNumberTooltip ( operator ) {
239
239
return `Quick Edit<br><br>
240
240
<span class="keyboard">${ this . $keys . ctrl } </span> + <i class="material-icons">mouse</i>: ${ operator } 5<br>
241
- <span class="keyboard">Shift </span> + <i class="material-icons">mouse</i>: ${ operator } 10<br>
242
- <span class="keyboard">Alt </span> + <i class="material-icons">mouse</i>: ${ operator } 100`
241
+ <span class="keyboard">${ this . $keys . shift } </span> + <i class="material-icons">mouse</i>: ${ operator } 10<br>
242
+ <span class="keyboard">${ this . $keys . alt } </span> + <i class="material-icons">mouse</i>: ${ operator } 100`
243
243
}
244
244
}
245
245
}
You can’t perform that action at this time.
0 commit comments