Skip to content

Commit

Permalink
Fix unintended bug introduced
Browse files Browse the repository at this point in the history
  • Loading branch information
jq1836 committed Sep 13, 2023
1 parent 400cfa4 commit fdce5b0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion frontend/src/components/c-segment-collection.vue
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@ export default defineComponent({
},
methods: {
visibilityChanged(isVisible: boolean) {
this.isRendered = isVisible;
if (isVisible) {
this.isRendered = true;
}
},
},
});
Expand Down

0 comments on commit fdce5b0

Please sign in to comment.