Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
Lakeyzer committed May 15, 2024
1 parent c42623b commit 193080c
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,5 +1,5 @@
{
"version": "2.24.6",
"version": "2.25.0",
"name": "shieldmaiden",
"description": "A Dungeons and Dragons Combat Tracker",
"productName": "Shieldmaiden",
Expand Down
2 changes: 1 addition & 1 deletion src/components/Tiers.vue
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ export default {
},
methods: {
storageType(type, count) {
type === "npcs" ? type.slice(0, -1).toUpperCase() : type.slice(0, -1).capitalize();
type = type === "npcs" ? type.slice(0, -1).toUpperCase() : type.slice(0, -1).capitalize();
return count === "infinite" || count > 1 ? `${type}s` : type;
},
},
Expand Down

0 comments on commit 193080c

Please sign in to comment.