From 9888d1b197146a93ecda2f4940430b4a5f431ee0 Mon Sep 17 00:00:00 2001 From: Thorn Walli Date: Mon, 27 May 2024 11:46:35 +0200 Subject: [PATCH] fix(components): fix empty head --- src/runtime/components/BoosterImage/Base.vue | 1 + src/runtime/components/BoosterPicture/Base.vue | 1 + 2 files changed, 2 insertions(+) diff --git a/src/runtime/components/BoosterImage/Base.vue b/src/runtime/components/BoosterImage/Base.vue index 26ba99e27e..752564215c 100644 --- a/src/runtime/components/BoosterImage/Base.vue +++ b/src/runtime/components/BoosterImage/Base.vue @@ -102,6 +102,7 @@ export default { ].filter(Boolean) }; } + return {}; }); try { diff --git a/src/runtime/components/BoosterPicture/Base.vue b/src/runtime/components/BoosterPicture/Base.vue index 4fc5d575ba..ceb0be4938 100644 --- a/src/runtime/components/BoosterPicture/Base.vue +++ b/src/runtime/components/BoosterPicture/Base.vue @@ -97,6 +97,7 @@ export default { style: [getPictureStyleDescription(metaSources.value, classNames)] }; } + return {}; }); try { metaSources.value = await sourceList.getMeta($img, $booster);