In case of the override clone event, the changes made to the context value doesn't reflect in create request payload.
Cause
With an existing context data, operands contains {"var": <dimension_name>} we are filtering out this entry from the operands while constructing the form.
But on input, to update the value, the original context which contains {"var": <dimension_name>} is being used.
There is difference in position where the value should be updated before and after the filtering out var.
The on:input handler prevents this update when the entry at the given certain index is var.
Result => The new/updated value is disposed of.
Solution
As a temporary solution we can remove the var from the list of operands at the initial state.
Problem
In case of the override clone event, the changes made to the context value doesn't reflect in
create
request payload.Cause
{"var": <dimension_name>}
we are filtering out this entry from the operands while constructing the form.{"var": <dimension_name>}
is being used.var
.var
.Result => The new/updated value is disposed of.
Solution
As a temporary solution we can remove the
var
from the list of operands at the initial state.