Skip to content

Commit

Permalink
frontend: components: parameter-editor: ParameterLoader: Add delay in…
Browse files Browse the repository at this point in the history
… tooltips

The users are not happy having a tooltip showing when not necessary

Signed-off-by: Patrick José Pereira <[email protected]>
  • Loading branch information
patrickelectric committed Nov 11, 2024
1 parent 41c7b7e commit ae263b5
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
/>
</v-col>
<v-col class="virtual-table-cell name-cell">
<v-tooltip bottom>
<v-tooltip bottom open-delay="1000">
<template #activator="{ on }">
<div :style="!item.current ? { color: 'var(--v-warning-base)' } : {}" v-on="on">
{{ item.name }}
Expand All @@ -65,7 +65,7 @@
</v-tooltip>
</v-col>
<v-col class="virtual-table-cell">
<v-tooltip :disabled="!item.current" bottom>
<v-tooltip :disabled="!item.current" bottom open-delay="1000">
<template #activator="{ on }">
<div
class="large-text-cell"
Expand All @@ -80,7 +80,7 @@
</v-tooltip>
</v-col>
<v-col class="virtual-table-cell">
<v-tooltip bottom>
<v-tooltip bottom open-delay="1000">
<template #activator="{ on }">
<div
class="large-text-cell"
Expand Down

0 comments on commit ae263b5

Please sign in to comment.