mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
adding formatter function on table field creation. Formatter Funktion Object to String
This commit is contained in:
parent
e34b6f7137
commit
7169a3635d
@ -285,9 +285,6 @@ export default {
|
||||
}
|
||||
|
||||
// das absendeergebniss im string ansehen
|
||||
// alert(JSON.stringify(this.submitObj))
|
||||
// das submitObj zurücksetzen
|
||||
this.submitObj = null
|
||||
// das creation Formular reseten
|
||||
this.$refs.creationForm.reset()
|
||||
// Den geschöpften Wert auf o setzen
|
||||
|
||||
0
admin/src/graphql/getUsersQuery.ts
Normal file
0
admin/src/graphql/getUsersQuery.ts
Normal file
@ -32,7 +32,13 @@ export default {
|
||||
{ key: 'email', label: 'Email' },
|
||||
{ key: 'firstName', label: 'Firstname' },
|
||||
{ key: 'lastName', label: 'Lastname' },
|
||||
{ key: 'creation', label: 'Creation' },
|
||||
{
|
||||
key: 'creation',
|
||||
label: 'Creation',
|
||||
formatter: (value, key, item) => {
|
||||
return String(value)
|
||||
},
|
||||
},
|
||||
{ key: 'show_details', label: 'Details' },
|
||||
],
|
||||
searchResult: [],
|
||||
|
||||
0
backend/src/graphql/model/CreatePendingCreation.ts
Normal file
0
backend/src/graphql/model/CreatePendingCreation.ts
Normal file
Loading…
x
Reference in New Issue
Block a user