Fix conditional statement in ProomptItem.svelte

This commit is contained in:
kwaroran
2024-01-10 06:53:38 +09:00
parent a2f81fefd8
commit 6b88602673

View File

@@ -47,7 +47,7 @@
{/if}
</SelectInput>
{#if proompt.type === 'plain' || proompt.type === 'jailbreak'}
{#if proompt.type === 'plain' || proompt.type === 'jailbreak' || proompt.type === 'cot'}
<span>{language.specialType}</span>
<SelectInput bind:value={proompt.type2}>
<OptionInput value="normal">{language.noSpecialType}</OptionInput>