Skip to content

Commit

Permalink
chore: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
antfu committed Dec 23, 2024
1 parent 9b76f1a commit 4b522e8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/devtools-ui-kit/src/components/NSplitPane.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ const DEFAULT = 30
const key = props.storageKey
const size = key
? computed({
get: () => state.value[key] || props.leftSize || DEFAULT,
set: (v) => { state.value[key] = v },
})
get: () => state.value[key] || props.leftSize || DEFAULT,
set: (v) => { state.value[key] = v },
})
: ref(props.leftSize || DEFAULT)
</script>

Expand Down

0 comments on commit 4b522e8

Please sign in to comment.