엔티티타입 입력 셀렉트박스 다중선택 기능
This commit is contained in:
@@ -747,6 +747,23 @@ export function EntitySearchInputConfigPanel({
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div className="space-y-2">
|
||||
<div className="flex items-center justify-between">
|
||||
<Label className="text-xs sm:text-sm">다중 선택</Label>
|
||||
<Switch
|
||||
checked={localConfig.multiple || false}
|
||||
onCheckedChange={(checked) =>
|
||||
updateConfig({ multiple: checked })
|
||||
}
|
||||
/>
|
||||
</div>
|
||||
<p className="text-[10px] text-muted-foreground">
|
||||
{localConfig.multiple
|
||||
? "여러 항목을 선택할 수 있습니다. 값은 콤마로 구분됩니다."
|
||||
: "하나의 항목만 선택할 수 있습니다."}
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div className="space-y-2">
|
||||
<Label className="text-xs sm:text-sm">플레이스홀더</Label>
|
||||
<Input
|
||||
|
||||
Reference in New Issue
Block a user