fix: 修复遗漏的测试文件名
This commit is contained in:
parent
57d68bccce
commit
f23b47c9f1
|
|
@ -81,9 +81,7 @@ export function DropdownSelector<T extends string>({
|
|||
}
|
||||
>
|
||||
<span className="flex w-full items-center justify-center gap-1">
|
||||
{/* {truncateMiddle(selectedOption?.label ?? value, 20)} */}
|
||||
{truncateMiddle("hfiqwertyuiopasdfghjklxcvbnm.html", 20)}
|
||||
|
||||
{truncateMiddle(selectedOption?.label ?? value, 20)}
|
||||
{isOpen ? <ChevronUpIcon /> : <ChevronDownIcon />}
|
||||
</span>
|
||||
</DropdownMenuTrigger>
|
||||
|
|
@ -100,8 +98,7 @@ export function DropdownSelector<T extends string>({
|
|||
value={option.value}
|
||||
title={option.label}
|
||||
>
|
||||
{/* {truncateMiddle(option.label,50)} */}
|
||||
{truncateMiddle("hfiqwertyuiopasdfghjklxcvbnm.html", 20)}
|
||||
{truncateMiddle(option.label,20)}
|
||||
</DropdownMenuRadioItem>
|
||||
))}
|
||||
</DropdownMenuRadioGroup>
|
||||
|
|
|
|||
Loading…
Reference in New Issue