Applied style rules to genocide all \t characters

This commit is contained in:
Stefan Zermatten
2022-10-09 16:01:36 +02:00
parent de598c70a7
commit 2fa913b09a
208 changed files with 6027 additions and 5801 deletions

View File

@@ -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];
}
},
};
</script>