Skip to content

Commit

Permalink
hotfix party sheet
Browse files Browse the repository at this point in the history
  • Loading branch information
Lurkars committed Mar 25, 2024
1 parent bab37de commit 299cf0f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gloomhavensecretariat",
"version": "0.93.5",
"version": "0.93.6",
"license": "AGPL3",
"description": "Gloomhaven Secretariat is a Gloomhaven/Frosthaven Companion app.",
"homepage": "https://gloomhaven-secretariat.de",
Expand Down
2 changes: 1 addition & 1 deletion src/app/ui/figures/party/party-sheet-dialog.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ export class PartySheetDialogComponent implements OnInit, OnDestroy {
constructor(@Inject(DIALOG_DATA) public data: { campaign: boolean, partySheet: boolean, disableShortcuts: boolean }, private dialogRef: DialogRef, private dialog: Dialog) {
this.campaign = data && data.campaign;
this.party = gameManager.game.party;
this.disableShortcuts = data.disableShortcuts;
this.disableShortcuts = data && data.disableShortcuts;

if (gameManager.game.edition && !this.party.edition) {
this.party.edition = gameManager.game.edition;
Expand Down

0 comments on commit 299cf0f

Please sign in to comment.