Skip to content

Commit

Permalink
fix show_copyright boolean (#2810)
Browse files Browse the repository at this point in the history
  • Loading branch information
ildyria authored Dec 15, 2024
1 parent d7a9383 commit f959dd1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion resources/js/components/footers/GalleryFooter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,10 @@
rel="noopener"
></a>
</div>
<p v-if="footerData.copyright !== ''" class="home_copyright w-full uppercase text-muted-color leading-6 font-normal">
<p
v-if="footerData.footer_show_copyright && footerData.copyright !== ''"
class="home_copyright w-full uppercase text-muted-color leading-6 font-normal"
>
{{ footerData.copyright }}
</p>
<p
Expand Down

0 comments on commit f959dd1

Please sign in to comment.