Skip to content

Commit

Permalink
fix(footer): handle icons value for credits
Browse files Browse the repository at this point in the history
  • Loading branch information
Atinux committed Aug 2, 2023
1 parent 74d2da1 commit e1ed5c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/app/AppFooter.vue
Expand Up @@ -22,9 +22,9 @@ const nbSocialIcons = computed(() => (socialIcons.value ? socialIconsCount.value
rel="noopener"
target="_blank"
>
<Component
:is="config?.footer?.credits?.icon"
<Icon
v-if="config?.footer?.credits?.icon"
:name="config?.footer?.credits?.icon"
class="left-icon"
/>
<p v-if="config?.footer?.credits?.text">{{ config.footer.credits.text }}</p>
Expand Down

0 comments on commit e1ed5c8

Please sign in to comment.