File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ export default {
7878 })
7979 },
8080 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`
8282 }
8383 },
8484 methods: {
Original file line number Diff line number Diff line change @@ -9,7 +9,9 @@ import { parse } from '../util'
99const isChrome = typeof chrome !== 'undefined' && ! ! chrome . devtools
1010const isMac = navigator . platform === 'MacIntel'
1111const keys = {
12- ctrl : isMac ? '⌘' : 'Ctrl'
12+ ctrl : isMac ? '⌘' : 'Ctrl' ,
13+ shift : 'Shift' ,
14+ alt : isMac ? '⌥' : 'Alt'
1315}
1416
1517Object . defineProperties ( Vue . prototype , {
Original file line number Diff line number Diff line change @@ -238,8 +238,8 @@ export default {
238238 quickEditNumberTooltip ( operator ) {
239239 return `Quick Edit<br><br>
240240<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`
243243 }
244244 }
245245}
You can’t perform that action at this time.
0 commit comments