From 670f8ba9f311540912c9b29bac05bb7ecfdc0490 Mon Sep 17 00:00:00 2001
From: Julian Leucker <leuckerj@gmail.com>
Date: Wed, 6 Nov 2024 21:06:01 +0100
Subject: [PATCH] Hide chips until everything is loaded fully

---
 .../kolego/frontend/components/AbsenceReasonGroupSelect.vue | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/aleksis/apps/kolego/frontend/components/AbsenceReasonGroupSelect.vue b/aleksis/apps/kolego/frontend/components/AbsenceReasonGroupSelect.vue
index 874a559..2a33043 100644
--- a/aleksis/apps/kolego/frontend/components/AbsenceReasonGroupSelect.vue
+++ b/aleksis/apps/kolego/frontend/components/AbsenceReasonGroupSelect.vue
@@ -55,8 +55,7 @@ export default {
      * Determines whether the chips can be shown.
      *
      * Due to the eagerness of vuetify, we can only mount the chip-group, after the selected item has been loaded.
-     * Otherwise, vuetify would set the value to the first existing one. However, if it's possible to not be
-     * absent, we can show the chip-group directly, as the present chip is hardcoded.
+     * Otherwise, vuetify would set the value to the first existing one.
      *
      * @return {boolean} Whether to mount the chip-group
      */
@@ -64,8 +63,7 @@ export default {
       return (
         (!this.$apollo.queries.absenceReasons.loading &&
           this.absenceReasons.length) ||
-        this.customAbsenceReasonsExists ||
-        (this.allowEmpty && this.value === this.emptyValue)
+        this.customAbsenceReasonsExists
       );
     },
     customAbsenceReasonsExists() {
-- 
GitLab