Skip to content

Commit

Permalink
feat: improve UX for toggling timeline layer enabled state, #609
Browse files Browse the repository at this point in the history
  • Loading branch information
webfansplz committed Oct 24, 2024
1 parent aa116d5 commit 44eb909
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/client/src/components/timeline/TimelineLayers.vue
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ function toggleTimelineLayerEnabled(id: string) {
<li
v-for="item in data" :key="item.id"
class="group relative selectable-item"
:class="{ active: item.id === selected }"
:class="{ active: item.id === selected, op60: !getTimelineLayerEnabled(item.id) }"
@click="select(item.id)"
>
{{ item.label }}
Expand Down

0 comments on commit 44eb909

Please sign in to comment.