Skip to content

Commit

Permalink
Add a null/undefined check to audio VGridSkeleton (#2988)
Browse files Browse the repository at this point in the history
  • Loading branch information
obulat authored Sep 5, 2023
1 parent 83e6aaa commit e061bbc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<section>
<VGridSkeleton
v-if="results.length === 0 && !fetchState.isFinished"
v-if="results && results.length === 0 && !fetchState.isFinished"
is-for-tab="audio"
/>
<VSnackbar size="large" :is-visible="isSnackbarVisible">
Expand Down

0 comments on commit e061bbc

Please sign in to comment.