We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 87e0586 commit db581dcCopy full SHA for db581dc
1 file changed
apps/sim/components/ui/tag-dropdown.tsx
@@ -1358,7 +1358,7 @@ export const TagDropdown: React.FC<TagDropdownProps> = ({
1358
{hasChildren && (
1359
<ChevronRight className='h-4 w-4 text-muted-foreground' />
1360
)}
1361
- {tagDescription && !hasChildren && (
+ {tagDescription && tagDescription !== 'any' && !hasChildren && (
1362
<span className='ml-auto text-muted-foreground text-xs'>
1363
{tagDescription}
1364
</span>
@@ -1447,7 +1447,7 @@ export const TagDropdown: React.FC<TagDropdownProps> = ({
1447
1448
</div>
1449
<span className='flex-1 truncate'>{child.display}</span>
1450
- {childType && (
+ {childType && childType !== 'any' && (
1451
1452
{childType}
1453
0 commit comments