Mentions légales du service

Skip to content
Snippets Groups Projects

Resolve "Add text only wysiwyg"

Merged VIAUD Nathan requested to merge 346-add-text-only-wysiwyg into main
3 files
+ 39
19
Compare changes
  • Side-by-side
  • Inline
Files
3
@@ -90,13 +90,14 @@ function showLabel(inputType: string) {
@save-given-state="emit('saveGivenState', $event)"
/>
<HtmlInput
v-if="input.type === 'html'"
v-if="input.type === 'html' || input.type === 'html-text'"
:id="inputId"
ref="htmlInput"
:label="input.label"
:placeholder="input.placeholder"
:input-value="inputValue as string"
:inside-card="insideCard"
:text-only="input.type === 'html-text'"
@input="emit('input', $event)"
@save-given-state="emit('saveGivenState', $event)"
/>
Loading