Skip to content

Commit

Permalink
Merge pull request #91 from Readpato/fix/fallthrough-attribute
Browse files Browse the repository at this point in the history
fix(ControlInput): replace root element
  • Loading branch information
alvarosabu committed Dec 15, 2023
2 parents d103b00 + 9bff2a9 commit 4cd4cd8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/ControlInput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ function onChange(value: string) {
</script>

<template>
<template v-if="control.visible">
<div v-if="control.visible">
<ColorControl
v-if="control.type === 'color'"
:label="control.label"
Expand Down Expand Up @@ -81,5 +81,5 @@ function onChange(value: string) {
:control="control"
@change="onChange"
/>
</template>
</div>
</template>

0 comments on commit 4cd4cd8

Please sign in to comment.