Fix * display problem on graph label box
This commit is contained in:
parent
2dc59b49c0
commit
daf4175be0
1 changed files with 1 additions and 1 deletions
|
|
@ -206,7 +206,7 @@ export function AsyncSelect<T>({
|
||||||
tooltip={triggerTooltip}
|
tooltip={triggerTooltip}
|
||||||
side="bottom"
|
side="bottom"
|
||||||
>
|
>
|
||||||
{selectedOption ? getDisplayValue(selectedOption) : (initialValueDisplay || placeholder)}
|
{value === '*' ? <div>*</div> : (selectedOption ? getDisplayValue(selectedOption) : (initialValueDisplay || placeholder))}
|
||||||
<ChevronsUpDown className="opacity-50" size={10} />
|
<ChevronsUpDown className="opacity-50" size={10} />
|
||||||
</Button>
|
</Button>
|
||||||
</PopoverTrigger>
|
</PopoverTrigger>
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue