From 35c8b4b78b34d7d888dea5b3e6bf1d3434afef16 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Timoth=C3=A9e=20Poussard?= <tpoussard@neogeo.fr>
Date: Wed, 24 Jan 2024 14:42:59 +0100
Subject: [PATCH] fix console warning wrong indent

---
 .../FeatureType/CustomFormConditionalField.vue     |  4 ++--
 src/views/Projects/ProjectsList.vue                | 14 +++++++-------
 2 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/src/components/FeatureType/CustomFormConditionalField.vue b/src/components/FeatureType/CustomFormConditionalField.vue
index 6dfecd8b..d7005d0f 100644
--- a/src/components/FeatureType/CustomFormConditionalField.vue
+++ b/src/components/FeatureType/CustomFormConditionalField.vue
@@ -32,8 +32,8 @@
         <FeatureExtraForm
           v-if="conditioningCustForm"
           :id="conditioningCustForm.label"
-          class="full-width"
           ref="extraForm"
+          class="full-width"
           name="conditioning-value"
           :field="{...conditioningCustForm, value: config.conditionValue}"
           :is-conditional-field="true"
@@ -60,8 +60,8 @@
       <div>
         <FeatureExtraForm
           :id="`forced-value-for-${customForm.name}`"
-          class="full-width"
           ref="extraForm"
+          class="full-width"
           name="forced-value"
           :field="{...customForm, value: config.forcedValue}"
           :is-conditional-field="true"
diff --git a/src/views/Projects/ProjectsList.vue b/src/views/Projects/ProjectsList.vue
index a2e976fd..618350fe 100644
--- a/src/views/Projects/ProjectsList.vue
+++ b/src/views/Projects/ProjectsList.vue
@@ -64,14 +64,14 @@
         :class="{ active: loading }"
         class="ui inverted dimmer"
       >
-      <div class="ui loader" />
-    </div>
+        <div class="ui loader" />
+      </div>
     
-    <ProjectsListItem
-      v-for="project in projects"
-      :key="project.slug"
-      :project="project"
-    />
+      <ProjectsListItem
+        v-for="project in projects"
+        :key="project.slug"
+        :project="project"
+      />
 
       <span
         v-if="!projects || projects.length === 0"
-- 
GitLab