Formatting fix

This commit is contained in:
Phillip Thelen
2024-09-06 11:59:08 +02:00
parent 3cfe099864
commit 0d0a24deac

View File

@@ -232,11 +232,14 @@ export default {
},
methods: {
async saveItem (item) {
await this.saveHero({ hero: {
_id: this.hero._id,
purchasedPath: item.path,
purchasedVal: item.value,
}, msg: item.path });
await this.saveHero({
hero: {
_id: this.hero._id,
purchasedPath: item.path,
purchasedVal: item.value,
},
msg: item.path,
});
item.modified = false;
},
enableValueChange (item) {