From 9b2e27a88115022bbccb20fb23d05b8fcfcafcee Mon Sep 17 00:00:00 2001 From: Jose Marcenaro Date: Mon, 11 Mar 2024 14:35:42 -0300 Subject: [PATCH 1/2] Fix case mismatch when reading default handler config --- .../assets/src/workspace/workspace.context.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uSync.Backoffice.Management.Client/assets/src/workspace/workspace.context.ts b/uSync.Backoffice.Management.Client/assets/src/workspace/workspace.context.ts index 64a0df5e..d91186c3 100644 --- a/uSync.Backoffice.Management.Client/assets/src/workspace/workspace.context.ts +++ b/uSync.Backoffice.Management.Client/assets/src/workspace/workspace.context.ts @@ -130,7 +130,7 @@ export class uSyncWorkspaceContext extends UmbControllerBase } async getDefaultHandlerSetSettings() { - const {data} = await this.#repository.getHandlerSettings("default"); + const {data} = await this.#repository.getHandlerSettings("Default"); if (data) { this.#handlerSettings.setValue(data); From c70a65df2256a74bf0146155e8d4e18b1485c43a Mon Sep 17 00:00:00 2001 From: Jose Marcenaro Date: Mon, 11 Mar 2024 15:20:59 -0300 Subject: [PATCH 2/2] Fix case mismatch when invoking PerformAction --- .../assets/src/repository/SyncAction.respositoy.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uSync.Backoffice.Management.Client/assets/src/repository/SyncAction.respositoy.ts b/uSync.Backoffice.Management.Client/assets/src/repository/SyncAction.respositoy.ts index 5987d3e4..0d838a18 100644 --- a/uSync.Backoffice.Management.Client/assets/src/repository/SyncAction.respositoy.ts +++ b/uSync.Backoffice.Management.Client/assets/src/repository/SyncAction.respositoy.ts @@ -51,7 +51,7 @@ export class uSyncActionRepository extends UmbControllerBase { force : false, clean : false, clientId : clientId, - set: 'default' + set: 'Default' }, stepNumber: step }