Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
Lakeyzer committed Sep 29, 2023
1 parent 5968dcc commit bc0f3b3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 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,5 +1,5 @@
{
"version": "2.18.2",
"version": "2.19.0",
"name": "harmless_key",
"description": "A Dungeons and Dragons Combat Tracker",
"productName": "Harmless Key",
Expand Down
3 changes: 1 addition & 2 deletions src/components/slides/encounter/EditEntity.vue
Original file line number Diff line number Diff line change
Expand Up @@ -460,8 +460,7 @@ export default {
},
isActive(key, option) {
if (this.entity_settings && this.entity_settings[key] !== undefined) {
if (this.entity_settings[key] == option.value) return true;
else return false;
return this.entity_settings[key] == option.value;
} else if (
this.npcSettings &&
this.npcSettings[key] === undefined &&
Expand Down

0 comments on commit bc0f3b3

Please sign in to comment.