Skip to content

Commit

Permalink
Actually show skeleton if delay is disabled
Browse files Browse the repository at this point in the history
  • Loading branch information
kennytv committed Aug 18, 2024
1 parent df5fdb4 commit 2eb5faa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/Skeleton.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const props = withDefaults(
}
);
const show = ref(false);
const show = ref(!props.delay);
if (import.meta.client && props.delay) {
onMounted(() => {
setTimeout(() => {
Expand Down

0 comments on commit 2eb5faa

Please sign in to comment.