diff options
| author | Leonardo Bishop <me@leonardobishop.com> | 2024-03-12 17:46:44 +0000 |
|---|---|---|
| committer | Leonardo Bishop <me@leonardobishop.com> | 2024-03-12 17:46:44 +0000 |
| commit | 8664ad155c89d47affd94f8b0385ebf39841f1f8 (patch) | |
| tree | b1f6c33a2666a483e39093fa310ea3483b655c62 /components/editor/task/Configuration.vue | |
| parent | cc2f3987c3f6386da140fefcb1998cb1eef18839 (diff) | |
Add YAML modal
Diffstat (limited to 'components/editor/task/Configuration.vue')
| -rw-r--r-- | components/editor/task/Configuration.vue | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/components/editor/task/Configuration.vue b/components/editor/task/Configuration.vue index a209b58..bda75f4 100644 --- a/components/editor/task/Configuration.vue +++ b/components/editor/task/Configuration.vue @@ -109,8 +109,8 @@ const deleteTaskType = (taskId: string) => { :type="(taskDefintion.configuration[fieldName].type as string)" @update="(newValue: any) => updateValue(fieldName, newValue)" @delete="() => deleteValue(fieldName)" /> <div id="add-option"> - <multiselect class="multiselect" :options="configKeysOptions" :searchable="true" @select="onAddOption" - placeholder="Add option..."> + <multiselect class="configuration-multiselect" :options="configKeysOptions" :searchable="true" + @select="onAddOption" placeholder="Add option..."> </multiselect> </div> </div> @@ -173,12 +173,12 @@ const deleteTaskType = (taskId: string) => { border-top: 1px solid var(--color-border); } -:deep(.multiselect) .multiselect__tags { +:deep(.configuration-multiselect) .multiselect__tags { border: unset !important; border-radius: 0px !important; } -:deep(.multiselect) .multiselect__select { +:deep(.configuration-multiselect) .multiselect__select { background: unset !important; } </style> |
