Skip to content

Commit

Permalink
Typo bugfix in elements/editor.js
Browse files Browse the repository at this point in the history
* The q-editor html tag in the template was never closed, instead a q-input tag was closed.
  • Loading branch information
Alyxion committed Dec 26, 2024
1 parent 7b94666 commit 7645979
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nicegui/elements/editor.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default {
<template v-for="(_, slot) in $slots" v-slot:[slot]="slotProps">
<slot :name="slot" v-bind="slotProps || {}" />
</template>
</q-input>
</q-editor>
`,
props: {
value: String,
Expand Down

0 comments on commit 7645979

Please sign in to comment.