web/satellite: dismiss access grant modal tooltip
This change fixes an issue where the tooltip on the create access grant modal will not dismiss even after hovering/clicking outside of it. Issue: https://github.com/storj/storj/issues/5502 Change-Id: Ib6c042f3b18566bfeb4b05cb50acfa5e5ca1fbb9
This commit is contained in:
parent
b4dbfa0cf8
commit
e751ee3c1b
@ -373,15 +373,15 @@ function toggleTooltipHover(type, action): void {
|
||||
if (tooltipHover.value === '' && action === 'over') {
|
||||
tooltipHover.value = type;
|
||||
return;
|
||||
} else if (tooltipHover === type && action === 'leave') {
|
||||
} else if (tooltipHover.value === type && action === 'leave') {
|
||||
tooltipVisibilityTimer.value = setTimeout(() => {
|
||||
tooltipHover.value = '';
|
||||
},750);
|
||||
}, 750);
|
||||
return;
|
||||
} else if (tooltipHover.value === type && action === 'over') {
|
||||
tooltipVisibilityTimer.value && clearTimeout(tooltipVisibilityTimer.value);
|
||||
return;
|
||||
} else if (tooltipHover !== type) {
|
||||
} else if (tooltipHover.value !== type) {
|
||||
tooltipVisibilityTimer.value && clearTimeout(tooltipVisibilityTimer.value);
|
||||
tooltipHover.value = type;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user