diff --git a/src/components/galleries/gallery-tile.vue b/src/components/galleries/gallery-tile.vue index 1190d99..b69dd7a 100644 --- a/src/components/galleries/gallery-tile.vue +++ b/src/components/galleries/gallery-tile.vue @@ -7,6 +7,7 @@ import { getTitleFromEntryOrId } from 'src/utilities/galleries' const props = defineProps<{ entry: GalleryEntry, id: string, + hideWarnings: boolean, }>() defineEmits<{ @@ -20,13 +21,18 @@ const title = computed(() => getTitleFromEntryOrId(props.entry, props.id)) .gallery-embed( @click='$emit("click", { event: $event, id })' ) - .image-wrapper + .image-wrapper( + :class='{ warning: !!entry.warning && !hideWarnings }' + ) img( :src='entry.thumbnailUrl || entry.url' :alt='entry.description || id' ) .caption-wrapper p {{ title }} + p.warning( + v-if='!!entry.warning' + ) {{ entry.warning }}