Et2DateDurationReadonly: Fix value change did not update, so displayed value was unchanged

This commit is contained in:
nathan 2023-04-11 17:09:36 -06:00 committed by ralf
parent c949d5bc2a
commit 4edf57ad8a

View File

@ -47,7 +47,9 @@ export class Et2DateDurationReadonly extends Et2DateDuration
set value(_value)
{
const old_value = this.__value;
this.__value = _value;
this.requestUpdate("value", old_value);
}
render()