Skip to content

Commit

Permalink
Merge pull request #56 from HE-Arc/dev
Browse files Browse the repository at this point in the history
Fix merge bugs
  • Loading branch information
JoFlucki authored May 2, 2024
2 parents bca46b1 + 4b5bcc8 commit 92db1ec
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion api/arconnectmanager/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware',
'allauth.account.middleware.AccountMiddleware',
#'allauth.account.middleware.AccountMiddleware',
]

ROOT_URLCONF = 'arconnectmanager.urls'
Expand Down
9 changes: 6 additions & 3 deletions frontend/src/views/ManageTournamentsView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -66,13 +66,16 @@ onMounted(async () => {
</div>
<div>
<span @click="nextTournamentStatus(tournament)" class="material-symbols-outlined"
:class="{ 'disabled': tournament.status.id == TournamentStatus.Completed.id }">
:class="{ 'disabled': tournament.status.id == TournamentStatus.Completed.id }"
title="Cliquez pour passer au prochain plan">
next_plan
</span>
<span @click="deleteTournament(tournament.id, tournament.name)" class="material-symbols-outlined">
<span @click="deleteTournament(tournament.id, tournament.name)" class="material-symbols-outlined"
title="Cliquez pour supprimer le tournoi">
delete
</span>
<span @click="editTournament(tournament.id)" class="material-symbols-outlined">
<span @click="editTournament(tournament.id)" class="material-symbols-outlined"
title="Cliquez pour modifier le tournoi">
edit
</span>
</div>
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/TournamentsView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const tournaments = ref([]);
onMounted(async () => {
tournaments.value = await TournamentService.getAllTournaments()
};
});
</script>

Expand Down

0 comments on commit 92db1ec

Please sign in to comment.