Detail repository save returns updated model

previously returned the original model,
prior to any server updates, e.g. updated date.
This commit is contained in:
leekelleher
2024-10-28 17:41:27 +00:00
parent 67b87748c0
commit 18a96cff45

View File

@@ -124,7 +124,7 @@ export abstract class UmbDetailRepositoryBase<
this.#notificationContext!.peek('positive', notification);
}
return { data: model, error };
return { data: updatedData, error };
}
/**