mirror of
https://github.com/IT4Change/gradido.git
synced 2026-02-06 09:56:05 +00:00
fix config custom code
This commit is contained in:
parent
7b0e7f05b6
commit
612b99cba6
@ -33,7 +33,7 @@ function composeDataString(data: (string | Object)[]): string {
|
||||
return data
|
||||
.map((d) => {
|
||||
// if it is a object and his toString function return only garbage
|
||||
if (typeof d === 'object' && d.toString() === '[object Object]') {
|
||||
if (d && typeof d === 'object' && d.toString() === '[object Object]') {
|
||||
return inspect(d, )
|
||||
}
|
||||
if (d) {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user