mirror of
https://github.com/langgenius/dify.git
synced 2026-06-07 16:32:01 +08:00
fix(ui): chip style (#36720)
This commit is contained in:
parent
b034449a0c
commit
50face5760
@ -104,12 +104,9 @@ function Chip<T extends ItemValue>({
|
||||
<SelectItem
|
||||
key={item.value}
|
||||
value={item.value}
|
||||
className="mx-1 gap-2 rounded-lg px-2 py-1.5 pl-3 select-none"
|
||||
>
|
||||
<SelectItemText className="mr-0 px-0">
|
||||
<span title={item.name} className="block truncate system-sm-medium text-text-secondary">{item.name}</span>
|
||||
</SelectItemText>
|
||||
<SelectItemIndicator className="text-util-colors-blue-light-blue-light-600" />
|
||||
<SelectItemText title={item.name}>{item.name}</SelectItemText>
|
||||
<SelectItemIndicator />
|
||||
</SelectItem>
|
||||
))}
|
||||
</SelectContent>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user