-
+
-
+
diff --git a/app/imports/ui/properties/forms/ClassLevelForm.vue b/app/imports/ui/properties/forms/ClassLevelForm.vue
index 0da622ec..854380e2 100644
--- a/app/imports/ui/properties/forms/ClassLevelForm.vue
+++ b/app/imports/ui/properties/forms/ClassLevelForm.vue
@@ -66,15 +66,16 @@
diff --git a/app/imports/ui/properties/forms/ContainerForm.vue b/app/imports/ui/properties/forms/ContainerForm.vue
index 78990b4d..58f127e0 100644
--- a/app/imports/ui/properties/forms/ContainerForm.vue
+++ b/app/imports/ui/properties/forms/ContainerForm.vue
@@ -63,9 +63,7 @@
-
+
diff --git a/app/imports/ui/properties/forms/DamageForm.vue b/app/imports/ui/properties/forms/DamageForm.vue
index 98d92e3d..1faa66f3 100644
--- a/app/imports/ui/properties/forms/DamageForm.vue
+++ b/app/imports/ui/properties/forms/DamageForm.vue
@@ -76,45 +76,48 @@ import VARIABLE_NAME_REGEX from '/imports/constants/VARIABLE_NAME_REGEX.js';
export default {
mixins: [propertyFormMixin],
- props: {
- parentTarget: {
- type: String,
+ props: {
+ parentTarget: {
+ type: String,
default: undefined,
- },
- },
- data(){return{
- DAMAGE_TYPES,
- damageTypeRules: [
- value => {
- if (!value) return 'Damage type is required';
- if (!VARIABLE_NAME_REGEX.test(value)){
- return `${value} is not a valid damage name`
+ },
+ },
+ data() {
+ return {
+ DAMAGE_TYPES,
+ damageTypeRules: [
+ value => {
+ if (!value) return 'Damage type is required';
+ if (!VARIABLE_NAME_REGEX.test(value)) {
+ return `${value} is not a valid damage name`
+ }
}
- }
- ],
- }},
- computed: {
- targetOptions(){
- return [
- {
- text: 'Self',
- value: 'self',
- }, {
- text: 'Target',
- value: 'target',
- },
- ];
- },
- targetOptionHint(){
- let hints = {
- self: 'The damage will be applied to the character taking the action',
- target: 'The damage will be applied to the target of the action',
- };
- return hints[this.model.target];
- }
- },
+ ],
+ }
+ },
+ computed: {
+ targetOptions() {
+ return [
+ {
+ text: 'Self',
+ value: 'self',
+ }, {
+ text: 'Target',
+ value: 'target',
+ },
+ ];
+ },
+ targetOptionHint() {
+ let hints = {
+ self: 'The damage will be applied to the character taking the action',
+ target: 'The damage will be applied to the target of the action',
+ };
+ return hints[this.model.target];
+ }
+ },
}
diff --git a/app/imports/ui/properties/forms/DamageMultiplierForm.vue b/app/imports/ui/properties/forms/DamageMultiplierForm.vue
index 7705196b..551f1514 100644
--- a/app/imports/ui/properties/forms/DamageMultiplierForm.vue
+++ b/app/imports/ui/properties/forms/DamageMultiplierForm.vue
@@ -52,9 +52,7 @@
>
-
+
diff --git a/app/imports/ui/properties/forms/EffectForm.vue b/app/imports/ui/properties/forms/EffectForm.vue
index 9ef23c9a..694db21d 100644
--- a/app/imports/ui/properties/forms/EffectForm.vue
+++ b/app/imports/ui/properties/forms/EffectForm.vue
@@ -29,9 +29,7 @@
slot="item"
slot-scope="item"
>
-
+
{{ getEffectIcon(item.item.value, 1) }}
{{ item.item.text }}
@@ -157,9 +155,7 @@
-
+
diff --git a/app/imports/ui/properties/forms/FeatureForm.vue b/app/imports/ui/properties/forms/FeatureForm.vue
index cb900962..c3f85735 100644
--- a/app/imports/ui/properties/forms/FeatureForm.vue
+++ b/app/imports/ui/properties/forms/FeatureForm.vue
@@ -46,49 +46,52 @@
diff --git a/app/imports/ui/properties/forms/FolderForm.vue b/app/imports/ui/properties/forms/FolderForm.vue
index 84f29b84..77c96aec 100644
--- a/app/imports/ui/properties/forms/FolderForm.vue
+++ b/app/imports/ui/properties/forms/FolderForm.vue
@@ -17,9 +17,7 @@
-
+
diff --git a/app/imports/ui/properties/forms/ItemForm.vue b/app/imports/ui/properties/forms/ItemForm.vue
index ced109d9..d8097daa 100644
--- a/app/imports/ui/properties/forms/ItemForm.vue
+++ b/app/imports/ui/properties/forms/ItemForm.vue
@@ -158,9 +158,9 @@ import FormSection from '/imports/ui/properties/forms/shared/FormSection.vue';
import propertyFormMixin from '/imports/ui/properties/forms/shared/propertyFormMixin.js';
export default {
- components: {
- FormSection,
- },
+ components: {
+ FormSection,
+ },
mixins: [propertyFormMixin],
- }
+}
diff --git a/app/imports/ui/properties/forms/ItemsConsumedListForm.vue b/app/imports/ui/properties/forms/ItemsConsumedListForm.vue
index 80069155..97531ec6 100644
--- a/app/imports/ui/properties/forms/ItemsConsumedListForm.vue
+++ b/app/imports/ui/properties/forms/ItemsConsumedListForm.vue
@@ -29,13 +29,13 @@
diff --git a/app/imports/ui/properties/forms/ProficiencyForm.vue b/app/imports/ui/properties/forms/ProficiencyForm.vue
index 87b35b4a..4fcf2825 100644
--- a/app/imports/ui/properties/forms/ProficiencyForm.vue
+++ b/app/imports/ui/properties/forms/ProficiencyForm.vue
@@ -48,17 +48,18 @@
diff --git a/app/imports/ui/properties/forms/ResourcesForm.vue b/app/imports/ui/properties/forms/ResourcesForm.vue
index 5c3e92d9..e3fc0dcb 100644
--- a/app/imports/ui/properties/forms/ResourcesForm.vue
+++ b/app/imports/ui/properties/forms/ResourcesForm.vue
@@ -55,54 +55,57 @@
diff --git a/app/imports/ui/properties/forms/RollForm.vue b/app/imports/ui/properties/forms/RollForm.vue
index 26432790..c06ceaa6 100644
--- a/app/imports/ui/properties/forms/RollForm.vue
+++ b/app/imports/ui/properties/forms/RollForm.vue
@@ -41,7 +41,7 @@
>
-
+
diff --git a/app/imports/ui/properties/forms/SavingThrowForm.vue b/app/imports/ui/properties/forms/SavingThrowForm.vue
index 1fc03b68..8e0c5540 100644
--- a/app/imports/ui/properties/forms/SavingThrowForm.vue
+++ b/app/imports/ui/properties/forms/SavingThrowForm.vue
@@ -88,24 +88,24 @@ import propertyFormMixin from '/imports/ui/properties/forms/shared/propertyFormM
export default {
mixins: [saveListMixin, propertyFormMixin],
computed: {
- targetOptions(){
- return [
- {
- text: 'Self',
- value: 'self',
- }, {
- text: 'Target',
- value: 'target',
- },
- ];
- },
- targetOptionHint(){
- let hints = {
- self: 'The save will be applied to the character taking the action',
- target: 'The save will be applied to the targets of the action',
- };
- return hints[this.model.target];
- }
- },
+ targetOptions() {
+ return [
+ {
+ text: 'Self',
+ value: 'self',
+ }, {
+ text: 'Target',
+ value: 'target',
+ },
+ ];
+ },
+ targetOptionHint() {
+ let hints = {
+ self: 'The save will be applied to the character taking the action',
+ target: 'The save will be applied to the targets of the action',
+ };
+ return hints[this.model.target];
+ }
+ },
};
diff --git a/app/imports/ui/properties/forms/SkillForm.vue b/app/imports/ui/properties/forms/SkillForm.vue
index 2854013e..91d30970 100644
--- a/app/imports/ui/properties/forms/SkillForm.vue
+++ b/app/imports/ui/properties/forms/SkillForm.vue
@@ -53,9 +53,7 @@
-
+
diff --git a/app/imports/ui/properties/forms/SlotFillerForm.vue b/app/imports/ui/properties/forms/SlotFillerForm.vue
index 64ce1c51..28890a30 100644
--- a/app/imports/ui/properties/forms/SlotFillerForm.vue
+++ b/app/imports/ui/properties/forms/SlotFillerForm.vue
@@ -95,20 +95,20 @@
diff --git a/app/imports/ui/properties/forms/SlotForm.vue b/app/imports/ui/properties/forms/SlotForm.vue
index 6c001c2c..f2dc7c9b 100644
--- a/app/imports/ui/properties/forms/SlotForm.vue
+++ b/app/imports/ui/properties/forms/SlotForm.vue
@@ -72,13 +72,11 @@
@change="change('slotTags', ...arguments)"
/>
-
+