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
parent 32ce18b832
commit 9f20a89306

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()