Skip to content

Commit 11dae61

Browse files
committed
Fix SyntaxError
1 parent a4cebfa commit 11dae61

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

MyApp/wwwroot/pages/components/WorkflowPrompt.mjs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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">

0 commit comments

Comments
 (0)