Fix für #71
All checks were successful
Build and Push Docker Images / build-backend (push) Successful in 17s
Build and Push Docker Images / build-frontend (push) Successful in 1m8s

This commit is contained in:
2026-01-21 10:52:56 +01:00
parent 3109f4d5ff
commit d6f257bcc6

View File

@@ -230,19 +230,7 @@ export const useDataStore = defineStore('data', () => {
label: "Anrede",
inputType: "text",
inputChangeFunction: function (row) {
row.name = ""
if(row.salutation) {
row.name += `${row.salutation}`
}
if(row.title) {
row.name += ` ${row.title}`
}
if(row.firstname) {
row.name += ` ${row.firstname}`
}
if(row.lastname) {
row.name += ` ${row.lastname}`
}
row.name = `${row.salutation + " "}${row.title+ " "}${row.firstname+ " "}${row.lastname}`;
},
disabledFunction: function (item) {
return item.isCompany
@@ -258,19 +246,7 @@ export const useDataStore = defineStore('data', () => {
label: "Titel",
inputType: "text",
inputChangeFunction: function (row) {
row.name = ""
if(row.salutation) {
row.name += `${row.salutation}`
}
if(row.title) {
row.name += ` ${row.title}`
}
if(row.firstname) {
row.name += ` ${row.firstname}`
}
if(row.lastname) {
row.name += ` ${row.lastname}`
}
row.name = `${row.salutation + " "}${row.title+ " "}${row.firstname+ " "}${row.lastname}`;
},
disabledFunction: function (item) {
return item.isCompany
@@ -285,19 +261,7 @@ export const useDataStore = defineStore('data', () => {
title: true,
inputType: "text",
inputChangeFunction: function (row) {
row.name = ""
if(row.salutation) {
row.name += `${row.salutation}`
}
if(row.title) {
row.name += ` ${row.title}`
}
if(row.firstname) {
row.name += ` ${row.firstname}`
}
if(row.lastname) {
row.name += ` ${row.lastname}`
}
row.name = `${row.salutation + " "}${row.title+ " "}${row.firstname+ " "}${row.lastname}`;
},
disabledFunction: function (item) {
return item.isCompany
@@ -312,19 +276,7 @@ export const useDataStore = defineStore('data', () => {
title: true,
inputType: "text",
inputChangeFunction: function (row) {
row.name = ""
if(row.salutation) {
row.name += `${row.salutation}`
}
if(row.title) {
row.name += ` ${row.title}`
}
if(row.firstname) {
row.name += ` ${row.firstname}`
}
if(row.lastname) {
row.name += ` ${row.lastname}`
}
row.name = `${row.salutation + " "}${row.title+ " "}${row.firstname+ " "}${row.lastname}`;
},
disabledFunction: function (item) {
return item.isCompany