mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-06-26 12:51:52 +02:00
Fix null being represented into remark's column in links
This commit is contained in:
parent
040183e68e
commit
fdc8b9b997
@ -260,7 +260,15 @@ export class Et2Link extends ExposeMixin<Et2Widget>(Et2Widget(LitElement)) imple
|
|||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
// we should not let null value being stored into dataset as 'null'
|
||||||
|
if (_value[key] === null)
|
||||||
|
{
|
||||||
|
this.dataset[key] = "";
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
this.dataset[key] = _value[key];
|
this.dataset[key] = _value[key];
|
||||||
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
this.requestUpdate("value");
|
this.requestUpdate("value");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user