Selaa lähdekoodia

Mise à jour de 'src/PlannerApp.vue'

clovis 4 vuotta sitten
vanhempi
commit
262629f898
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      src/PlannerApp.vue

+ 1 - 1
src/PlannerApp.vue

@@ -417,7 +417,7 @@ export default defineComponent({
                   const parseObj = o as JustificationObject;
                   const slot = this.$store.getters.getCreneauById(parseObj.slotId);
                   if (o.type == "MealSlot" & slot ){
-                    return slot.toString() + slot.benevoleIdList.length + "/" + slot.maxAttendee;
+                    return slot.toString() + "\t" + slot.benevoleIdList.length + "/" + slot.maxAttendee;
                   }
                   const benevole = this.$store.getters.getBenevoleById(parseObj.volonteerId);
                   return `Bénevole :\t${benevole?.shortame}<br>${slot?.toString()}`;