diff --git a/app/imports/api/properties/subSchemas/ResultsSchema.js b/app/imports/api/properties/subSchemas/ResultsSchema.js index c5b6231c..9519b3f9 100644 --- a/app/imports/api/properties/subSchemas/ResultsSchema.js +++ b/app/imports/api/properties/subSchemas/ResultsSchema.js @@ -8,28 +8,28 @@ let ResultsSchema = new SimpleSchema({ // Adjustments applied when taking this action // Ideally, if these adjustments can't be made, the action should be unusable adjustments: { - type: Array, - defaultValue: [], + type: Array, + defaultValue: [], }, 'adjustments.$': { - type: AdjustmentSchema, + type: AdjustmentSchema, }, // Damage is done to hitpoints or hitpoint-like stats // has a damage type, can be mitigated by resistances, etc. damages: { - type: Array, - defaultValue: [], + type: Array, + defaultValue: [], }, 'damages.$': { - type: DamageSchema, + type: DamageSchema, }, // Buffs applied when taking this action buffs: { - type: Array, - defaultValue: [], + type: Array, + defaultValue: [], }, 'buffs.$': { - type: StoredBuffWithIdSchema, + type: StoredBuffWithIdSchema, }, }); diff --git a/app/imports/ui/creature/character/characterSheetTabs/StatsTab.vue b/app/imports/ui/creature/character/characterSheetTabs/StatsTab.vue index dcd09470..1a201bcd 100644 --- a/app/imports/ui/creature/character/characterSheetTabs/StatsTab.vue +++ b/app/imports/ui/creature/character/characterSheetTabs/StatsTab.vue @@ -153,7 +153,10 @@ class="actions" > - + Actions - {{ model.name }} + + {{ model.name }} + + + + + + diff --git a/app/imports/ui/properties/forms/AdjustmentForm.vue b/app/imports/ui/properties/forms/AdjustmentForm.vue index c4b1cc7b..97616988 100644 --- a/app/imports/ui/properties/forms/AdjustmentForm.vue +++ b/app/imports/ui/properties/forms/AdjustmentForm.vue @@ -11,13 +11,13 @@ @change="(value, ack) => $emit('change', {path: ['stat'], value, ack})" />