Skip to content

Commit

Permalink
Should fix a bug with duplicating renowns
Browse files Browse the repository at this point in the history
  • Loading branch information
Daelso committed Oct 25, 2023
1 parent c18bc65 commit 1b4c0e1
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/components/character_creator/werewolf/tribes.vue
Original file line number Diff line number Diff line change
Expand Up @@ -89,14 +89,18 @@
option-label="renown_name"
option-value="renown_id"
popup-content-style="background-color:#222831; color:white"
@update:model-value="applyBonusRenown()"
/>
</div>
</div>
<q-stepper-navigation>
<q-btn
:disable="!tribe || !bonus_renown"
@click="step = 2"
@click="
() => {
applyBonusRenown();
this.step = 2;
}
"
color="primary"
label="Continue"
>
Expand Down

0 comments on commit 1b4c0e1

Please sign in to comment.