We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b76f1a commit 4b522e8Copy full SHA for 4b522e8
packages/devtools-ui-kit/src/components/NSplitPane.vue
@@ -25,9 +25,9 @@ const DEFAULT = 30
25
const key = props.storageKey
26
const size = key
27
? computed({
28
- get: () => state.value[key] || props.leftSize || DEFAULT,
29
- set: (v) => { state.value[key] = v },
30
- })
+ get: () => state.value[key] || props.leftSize || DEFAULT,
+ set: (v) => { state.value[key] = v },
+ })
31
: ref(props.leftSize || DEFAULT)
32
</script>
33
0 commit comments