Skip to content

Commit 67dfbfb

Browse files
committed
Delay tooltips
1 parent 7985f43 commit 67dfbfb

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

code/core/src/manager/components/sidebar/TagsFilterPanel.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,7 @@ export const TagsFilterPanel = ({
137137
content: (
138138
<TagRow>
139139
<WithTooltip
140+
delayShow={1000}
140141
hasChrome={false}
141142
style={{ minWidth: 0, flex: 1 }}
142143
tooltip={<TooltipNote note={`${checked ? 'Remove' : 'Add'} tag filter: ${tag}`} />}
@@ -160,6 +161,7 @@ export const TagsFilterPanel = ({
160161
/>
161162
</WithTooltip>
162163
<WithTooltip
164+
delayShow={1000}
163165
hasChrome={false}
164166
tooltip={<TooltipNote note={`${excluded ? 'Include' : 'Exclude'} tag: ${tag}`} />}
165167
trigger="hover"
@@ -208,6 +210,7 @@ export const TagsFilterPanel = ({
208210
)}
209211
{hasDefaultSelection && (
210212
<WithTooltip
213+
delayShow={1000}
211214
hasChrome={false}
212215
tooltip={<TooltipNote note="Reset to default selection" />}
213216
trigger="hover"

0 commit comments

Comments
 (0)