File tree Expand file tree Collapse file tree
MyApp/wwwroot/pages/components Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -214,11 +214,11 @@ export default {
214214 <div v-for="input in advancedInputs" class="flex flex-col space-y-1" :class="input.type === 'String' && input.multiline ? 'col-span-2 row-span-2' : ''">
215215 <label :for="input.name" class="text-sm font-medium text-gray-700 dark:text-gray-300" :class="input.tooltip ? 'cursor-help' : ''" :title="input.tooltip">{{input.label}}</label>
216216 <div v-if="input.name.endsWith('seed')" class="flex items-center gap-1">
217- <input v-else-if="input.type === 'String'" spellcheck="false"
218- v-model="workflowArgs[input.name]"
217+ <input v-model="workflowArgs[input.name]"
219218 :id="input.name"
220- type="text"
221219 :placeholder="input.placeholder || ''"
220+ spellcheck="false"
221+ type="text"
222222 class="w-32 px-3 py-2 border border-gray-300 dark:border-gray-800 rounded-md shadow-sm focus:ring-indigo-500 focus:border-indigo-500 sm:text-sm">
223223 <button type="button" @click="workflowArgs[input.name] = getNextSeedValue(selectedWorkflow)"
224224 title="Generate new Random Seed">
You can’t perform that action at this time.
0 commit comments