Skip to content

Commit

Permalink
fix warnings in dev window
Browse files Browse the repository at this point in the history
  • Loading branch information
billyc committed Oct 24, 2024
1 parent b0e888f commit e1985f0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/components/PlaybackControls.vue
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export default defineComponent({
dotSize: 28,
duration: 0,
lazy: true,
tooltip: 'active',
tooltip: true,
size: 'is-large',
'tooltip-always': true,
'tooltip-placement': 'top',
Expand Down
2 changes: 1 addition & 1 deletion src/viz/multiday-agents/MultiDayViewer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
b-slider.speed-slider(v-model="speedSlider"
:min="0" :max="speedStops.length-1"
:dotSize="20"
tooltip="active"
:tooltip="true"
tooltip-placement="bottom"
:custom-formatter="val => speedStops[val] + 'x'"
@input="speed = speedStops[speedSlider]"
Expand Down
2 changes: 1 addition & 1 deletion src/viz/time-lapse/PlaybackControls.vue
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export default defineComponent({
clickable: false,
duration: 0,
lazy: true,
tooltip: 'active',
tooltip: true,
size: 'is-large',
'tooltip-always': true,
'tooltip-placement': 'top',
Expand Down
2 changes: 1 addition & 1 deletion src/viz/time-lapse/TimeLapseViz.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
b-slider.speed-slider(v-model="speedSlider"
:min="0" :max="speedStops.length-1"
:dotSize="20"
tooltip="active"
:tooltip="true"
tooltip-placement="bottom"
:custom-formatter="val => speedStops[val] + 'x'"
@input="speed = speedStops[speedSlider]"
Expand Down

0 comments on commit e1985f0

Please sign in to comment.