Skip to content

Commit

Permalink
Merge pull request #420 from ownego/fix/empty-state-classname
Browse files Browse the repository at this point in the history
Fix: empty state image container class name mismatch
  • Loading branch information
juzser authored Dec 17, 2024
2 parents a2ca2cc + 26210af commit aa52cd5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/EmptyState/EmptyState.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Box(
BlockStack(inline-align="center")
//- ImageMarkUp
div(
:class="imageContainerClass",
:class="imageContainerClassNames",
)
Image(
v-if="largeImage",
Expand Down Expand Up @@ -145,8 +145,8 @@ const skeletonImageClass = computed(() => classNames(
imageLoaded.value && styles.loaded,
));
const imageContainerClass = computed(() => classNames(
props.imageContained && styles.imageContained,
const imageContainerClassNames = computed(() => classNames(
styles.ImageContainer,
!imageLoaded.value && styles.SkeletonImageContainer,
));
Expand Down

0 comments on commit aa52cd5

Please sign in to comment.