mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-15 19:20:47 +01: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;
|
||||
}
|
||||
this.dataset[key] = _value[key];
|
||||
// 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.requestUpdate("value");
|
||||
|
Loading…
Reference in New Issue
Block a user