Skip to content

Commit 7e0fefb

Browse files
authored
Merge pull request #3 from Picea/codex/investigate-navigation-actions-issue
Fix runtime dispatch path
2 parents eb562ce + 04633be commit 7e0fefb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Abies.Counter/wwwroot/abies.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ function eventHandler(event) {
3333

3434
if (commandId) {
3535
console.log(`Dispatching command ${commandId}`);
36-
exports.Runtime.Dispatch(commandId);
36+
exports.Abies.Runtime.Dispatch(commandId);
3737
event.preventDefault();
3838
} else {
3939
console.error("No command id found in data-event-click attribute.");

Abies/wwwroot/abies.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ function eventHandler(event) {
3333

3434
if (commandId) {
3535
console.log(`Dispatching command ${commandId}`);
36-
exports.Runtime.Dispatch(commandId);
36+
exports.Abies.Runtime.Dispatch(commandId);
3737
event.preventDefault();
3838
} else {
3939
console.error("No command id found in data-event-click attribute.");

0 commit comments

Comments
 (0)