Skip to content

Commit e927a1f

Browse files
fix(ui): get the string fields in no code to use editor and have auto completion back (#7150)
1 parent 3630649 commit e927a1f

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

ui/src/components/flows/tasks/TaskString.vue

+8-4
Original file line numberDiff line numberDiff line change
@@ -8,20 +8,24 @@
88
/>
99
</template>
1010
<template v-else>
11-
<InputText
11+
<editor
1212
:model-value="editorValue"
13+
:navbar="false"
14+
:full-height="false"
15+
schema-type="flow"
16+
lang="plaintext"
17+
input
1318
@update:model-value="onInput"
14-
class="w-100"
1519
/>
1620
</template>
1721
</template>
1822
<script>
1923
import Task from "./Task";
20-
import InputText from "../../../components/code/components/inputs/InputText.vue";
24+
import Editor from "../../../components/inputs/Editor.vue";
2125
2226
export default {
2327
mixins: [Task],
24-
components: {InputText},
28+
components: {Editor},
2529
emits: ["update:modelValue"],
2630
computed: {
2731
isValid() {

0 commit comments

Comments
 (0)