partialUpdateFrozenArray
const partialEntry = {value: 'myValue'};const newDataSet = partialUpdateFrozenArray(myState.getValue(), partialEntry, x => x.key === 'myKey');myState.setValue(newDataSet); Copy
const partialEntry = {value: 'myValue'};const newDataSet = partialUpdateFrozenArray(myState.getValue(), partialEntry, x => x.key === 'myKey');myState.setValue(newDataSet);
Function
partialUpdateFrozenArray
Description
Example: Example append new entry for a ArrayState or a part of UmbDeepState/UmbObjectState it which is an array. Where the key is unique and the item will be updated if matched with existing.