Skip to content

Commit

Permalink
Merge pull request #210 from aau-network-security/develop
Browse files Browse the repository at this point in the history
fix small bug
  • Loading branch information
mrtrkmn authored Aug 12, 2021
2 parents 4563502 + ef67c09 commit 63443d9
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 63443d9

Please sign in to comment.