Refactor additionalClass parameter to be className for clarity

This commit is contained in:
kwaroran
2024-04-11 05:46:10 +09:00
parent 35af70f70f
commit 386129626f
9 changed files with 21 additions and 21 deletions

View File

@@ -624,10 +624,10 @@
{/if}
{#if currentChar.data.ttsMode === 'huggingface'}
<span class="text-textcolor">Model</span>
<TextInput additionalClass="mb-4 mt-2" bind:value={currentChar.data.hfTTS.model} />
<TextInput className="mb-4 mt-2" bind:value={currentChar.data.hfTTS.model} />
<span class="text-textcolor">Language</span>
<TextInput additionalClass="mb-4 mt-2" bind:value={currentChar.data.hfTTS.language} placeholder="en" />
<TextInput className="mb-4 mt-2" bind:value={currentChar.data.hfTTS.language} placeholder="en" />
{/if}
{#if currentChar.data.ttsMode === 'vits'}
{#if currentChar.data.vits}
@@ -693,8 +693,8 @@
<span class="text-textcolor">{language.depthPrompt}</span>
<div class="flex justify-center items-center">
<NumberInput size="sm" bind:value={currentChar.data.depth_prompt.depth} additionalClass="w-12"/>
<TextInput size="sm" bind:value={currentChar.data.depth_prompt.prompt} additionalClass="flex-1"/>
<NumberInput size="sm" bind:value={currentChar.data.depth_prompt.depth} className="w-12"/>
<TextInput size="sm" bind:value={currentChar.data.depth_prompt.prompt} className="flex-1"/>
</div>
<span class="text-textcolor mt-2">{language.altGreet}</span>

View File

@@ -43,7 +43,7 @@
}
}} class="flex items-center text-textcolor border-solid border-0 border-darkborderc p-2 cursor-pointer rounded-md"class:bg-selected={i === chara.chatPage}>
{#if editMode}
<TextInput bind:value={chara.chats[i].name} additionalClass="flex-grow min-w-0" padding={false}/>
<TextInput bind:value={chara.chats[i].name} className="flex-grow min-w-0" padding={false}/>
{:else}
<span>{chat.name}</span>
{/if}