Skip to content

Commit

Permalink
Typo bugfix in elements/editor.js (#4148)
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.

Just by coincident stumbled over this, no negative impact experienced
using the qeditor so far, nevertheless it should be fixed obviously.
  • Loading branch information
Alyxion authored Dec 28, 2024
1 parent 7b94666 commit 09f4c34
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 09f4c34

Please sign in to comment.