mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-16 22:42:16 +00:00
tagheaderfilter fix
This commit is contained in:
@@ -108,12 +108,12 @@ export function tagHeaderFilter(headerValue, rowValue) {
|
||||
if (Array.isArray(data))
|
||||
{
|
||||
combinedText = data
|
||||
.map(item => `${item.beschreibung} ${item.notiz}`)
|
||||
.map(item => `${item?.beschreibung} ${item?.notiz}`)
|
||||
.join(' ');
|
||||
}
|
||||
else if (typeof data === 'object' && data !== null)
|
||||
{
|
||||
combinedText = `${data.beschreibung} ${data.notiz}`;
|
||||
combinedText = `${data?.beschreibung} ${data?.notiz}`;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user