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 1d1911f commit 4f7287bCopy full SHA for 4f7287b
src/components/power-tree.js
@@ -29,18 +29,6 @@ export default {
29
type: Boolean,
30
default: true
31
},
32
- multiselectKey: {
33
- type: [String, Array],
34
- default: function () {
35
- return ['ctrlKey', 'metaKey']
36
- },
37
- validator: function (value) {
38
- let allowedKeys = ['ctrlKey', 'metaKey', 'altKey']
39
- let multiselectKeys = Array.isArray(value) ? value : [value]
40
- multiselectKeys = multiselectKeys.filter(keyName => allowedKeys.indexOf(keyName) !== -1)
41
- return !!multiselectKeys.length
42
- }
43
44
scrollAreaHeight: {
45
type: Number,
46
default: 70
0 commit comments