remove space

This commit is contained in:
Niels Lyngsø
2023-01-11 11:38:10 +01:00
parent cc97812a6b
commit cb3e740ecd

View File

@@ -27,7 +27,6 @@ export class UmbWorkspaceDataTypeContext extends UmbWorkspaceContentContext<
public setPropertyValue(alias: string, value: unknown) {
// TODO: make sure to check that we have a details model? otherwise fail? 8This can be relevant if we use the same context for tree actions?
const entry = {alias: alias, value: value};
const newDataSet = appendToFrozenArray((this._data.getValue() as DataTypeDetails).data, entry, x => x.alias === alias);