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

@@ -4,7 +4,10 @@
Delete {{ typeName }}
</v-toolbar-title>
<div>
<v-alert type="warning" outlined>
<v-alert
type="warning"
outlined
>
This can't be undone
</v-alert>
<p v-if="name">
@@ -12,9 +15,9 @@
</p>
<v-text-field
v-if="name"
v-model="inputName"
label="Confirmation"
outlined
v-model="inputName"
/>
<div class="layout justify-center">
<v-btn
@@ -41,26 +44,35 @@
import DialogBase from '/imports/ui/dialogStack/DialogBase.vue';
export default {
components: {
DialogBase,
},
props: {
typeName: String,
name: String,
},
data(){return {
inputName: undefined,
}},
computed: {
nameMatch(){
if (!this.name) return true;
let uppername = this.name.toUpperCase();
let upperInputName = this.inputName && this.inputName.toUpperCase();
return uppername === upperInputName;
},
},
components: {
DialogBase,
},
props: {
typeName: {
type: String,
default: undefined,
},
name: {
type: String,
default: undefined,
},
},
data() {
return {
inputName: undefined,
}
},
computed: {
nameMatch() {
if (!this.name) return true;
let uppername = this.name.toUpperCase();
let upperInputName = this.inputName && this.inputName.toUpperCase();
return uppername === upperInputName;
},
},
};
</script>
<style lang="css" scoped>
</style>