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
committed by Niels Lyngsø
parent 083ed9d192
commit 52f03b9c38

View File

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