studstatus switch fullname to have surname first

This commit is contained in:
Harald Bamberger
2024-03-26 11:27:44 +01:00
parent 1e9a681c9a
commit a95c2fe47e
@@ -205,7 +205,7 @@ export default {
}, {
field: 'name',
title: this.$p.t('global', 'name'),
mutator: (value, data) => (data.vorname + ' ' + data.nachname).replace(/^\s*(.*)\s*$/, '$1'),
mutator: (value, data) => (data.nachname + ' ' + data.vorname).replace(/^\s*(.*)\s*$/, '$1'),
headerFilter: 'input'
}, {
field: 'datum',