Skip to content

Commit

Permalink
Fix case mismatch when reading default handler config (#601)
Browse files Browse the repository at this point in the history
* Fix case mismatch when reading default handler config

* Fix case mismatch when invoking PerformAction
  • Loading branch information
JoseMarcenaro authored Mar 12, 2024
1 parent 97c9965 commit 54f4a2e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export class uSyncActionRepository extends UmbControllerBase {
force : false,
clean : false,
clientId : clientId,
set: 'default'
set: 'Default'
},
stepNumber: step
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 54f4a2e

Please sign in to comment.