Skip to content

Commit

Permalink
set correct blade id
Browse files Browse the repository at this point in the history
  • Loading branch information
basilkot committed Aug 9, 2024
1 parent 9bd1cae commit 2d87d9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/VirtoCommerce.OrdersModule.Web/Scripts/order.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ angular.module(moduleName, [
var foundTemplate = knownOperations.getOperation('CustomerOrder');
if (foundTemplate) {
var newBlade = angular.copy(foundTemplate.detailBlade);
newBlade.id = 'orders';
newBlade.id = 'orderDetail';
newBlade.customerOrder = { id: orderId, customerName: 'Customer' };
newBlade.isClosingDisabled = true;
bladeNavigationService.showBlade(newBlade);
Expand Down

0 comments on commit 2d87d9f

Please sign in to comment.