mirror of
https://github.com/danbulant/Portfolio
synced 2026-07-06 03:20:53 +00:00
fix: tooltip delay for error
This commit is contained in:
parent
5eb27733f1
commit
865d1e2719
1 changed files with 1 additions and 1 deletions
|
|
@ -33,7 +33,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
const isTooltip = helperText ? tippy : () => {};
|
const isTooltip = helperText ? tippy : () => {};
|
||||||
$: tooltipDelay = !valid ? 0 : 1000;
|
$: tooltipDelay = error ? 0 : 1000;
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<div
|
<div
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue