From 6e6098fcb20fb48a60531e18a2a5e2474f8672cb Mon Sep 17 00:00:00 2001
From: Konrad Mohrfeldt <konrad.mohrfeldt@farbdev.org>
Date: Fri, 13 Oct 2023 20:17:13 +0200
Subject: [PATCH] fix: fix vue warning

---
 src/components/UnderConstruction.vue | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/components/UnderConstruction.vue b/src/components/UnderConstruction.vue
index 620706c3..ce9df2f8 100644
--- a/src/components/UnderConstruction.vue
+++ b/src/components/UnderConstruction.vue
@@ -1,11 +1,11 @@
 <template>
   <div class="construction tw-relative" :class="{ 'show-construction-area': showConstructionArea }">
     <component
+      v-bind="attrs"
       :is="link ? 'a' : 'div'"
       :href="link"
       :target="link ? '_blank' : undefined"
       :class="showConstructionArea ? 'tw-bg-amber-200' : 'tw-bg-amber-100'"
-      v-bind="attrs"
       class="tw-group tw-flex tw-items-center tw-gap-2 tw-absolute tw-rounded tw-w-min tw-p-[.35em] tw-px-[.7em] tw-cursor-help tw-select-none tw-transition tw-duration-200"
       tabindex="0"
       @mouseover="mouseOver = true"
-- 
GitLab