Skip to content

Commit

Permalink
fix small bug
Browse files Browse the repository at this point in the history
Signed-off-by: Ahmet Turkmen <[email protected]>
  • Loading branch information
mrtrkmn committed Aug 12, 2021
1 parent 7c14885 commit ef67c09
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions client/src/components/EventModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@
</b-form-checkbox-group>
</div>

<div class="tab-pane fade active show" id="cyber-championship" role="tabpanel" aria-labelledby="cyber-championship">
<div class="tab-pane fade" id="cyber-championship" role="tabpanel" aria-labelledby="cyber-championship">
<b-form-checkbox-group
id="challengesCS"
v-model="selectedChallenges"
Expand Down Expand Up @@ -632,11 +632,12 @@ export default {
break;
case "Starters":
that.challengesTextS.push(parentChallenge);
that.challengesS.push(taglist[0])
that.challengesS.push(taglist[0]);
break;
case "Cybermesterskaberne":
that.challengesTextCS.push(parentChallenge);
that.challengesCS.push(taglist[0])
that.challengesCS.push(taglist[0]);
break;
}
})
Expand Down

0 comments on commit ef67c09

Please sign in to comment.