Skip to content

Commit

Permalink
Merge branch 'release/3.412.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
vc-ci committed Sep 14, 2023
2 parents dcc7cba + d1ad181 commit 6780f74
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Project>
<!-- These properties will be shared for all projects -->
<PropertyGroup>
<VersionPrefix>3.411.0</VersionPrefix>
<VersionPrefix>3.412.0</VersionPrefix>
<VersionSuffix></VersionSuffix>
<VersionSuffix Condition=" '$(VersionSuffix)' != '' AND '$(BuildNumber)' != '' ">$(VersionSuffix)-$(BuildNumber)</VersionSuffix>
</PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
</label>
<div class="form-input">
<ui-select ng-model="blade.currentEntity.status" ng-disabled="blade.isLocked">
<ui-select-match placeholder="{{ 'orders.blades.customerOrder-detail.placeholders.status' | translate }}">{{$select.selected.value}}</ui-select-match>
<ui-select-match placeholder="{{ 'orders.blades.customerOrder-detail.placeholders.status' | translate }}">{{ blade.currentEntity.status }}</ui-select-match>
<ui-select-choices repeat="x.key as x in blade.statuses | filter: {'value': $select.search}">
<span ng-bind-html="x.value | highlight: $select.search"></span>
</ui-select-choices>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
<div class="form-input __inline">
<div class="form-input">
<ui-select ng-model="data.status">
<ui-select-match allow-clear="true" placeholder="{{ 'orders.blades.customerOrder-detail.placeholders.status' | translate }}">{{$select.selected.value}}</ui-select-match>
<ui-select-match allow-clear="true" placeholder="{{ 'orders.blades.customerOrder-detail.placeholders.status' | translate }}">{{data.status}}</ui-select-match>
<ui-select-choices repeat="x.key as x in blade.statuses | filter: {'value': $select.search}">
<span ng-bind-html="x.value | highlight: $select.search"></span>
</ui-select-choices>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
</label>
<div class="form-input">
<ui-select ng-model="blade.currentEntity.status" ng-change="blade.currentEntity.paymentStatus = $select.selected.key" ng-disabled="blade.isLocked">
<ui-select-match placeholder="{{ 'orders.blades.payment-detail.placeholders.status' | translate }}">{{$select.selected.value}}</ui-select-match>
<ui-select-match placeholder="{{ 'orders.blades.payment-detail.placeholders.status' | translate }}">{{ blade.currentEntity.status }}</ui-select-match>
<ui-select-choices repeat="x.key as x in blade.statuses | filter: {'value': $select.search}">
<span ng-bind-html="x.value | highlight: $select.search"></span>
</ui-select-choices>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
</label>
<div class="form-input">
<ui-select ng-model="blade.currentEntity.status" ng-change="blade.currentEntity.refundStatus = $select.selected.key" ng-disabled="blade.isLocked">
<ui-select-match placeholder="{{ 'orders.blades.refund-details.placeholders.status' | translate }}">{{$select.selected.value}}</ui-select-match>
<ui-select-match placeholder="{{ 'orders.blades.refund-details.placeholders.status' | translate }}">{{ blade.currentEntity.status }}</ui-select-match>
<ui-select-choices repeat="x.key as x in blade.statuses | filter: {'value': $select.search}">
<span ng-bind-html="x.value | highlight: $select.search"></span>
</ui-select-choices>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
</label>
<div class="form-input">
<ui-select ng-model="blade.currentEntity.status" ng-disabled="blade.isLocked">
<ui-select-match placeholder="{{ 'orders.blades.shipment-detail.placeholders.status' | translate }}">{{$select.selected.value}}</ui-select-match>
<ui-select-match placeholder="{{ 'orders.blades.shipment-detail.placeholders.status' | translate }}">{{ blade.currentEntity.status }}</ui-select-match>
<ui-select-choices repeat="x.key as x in blade.statuses | filter: {'value': $select.search}">
<span ng-bind-html="x.value | highlight: $select.search"></span>
</ui-select-choices>
Expand Down
2 changes: 1 addition & 1 deletion src/VirtoCommerce.OrdersModule.Web/module.manifest
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<module>
<id>VirtoCommerce.Orders</id>
<version>3.411.0</version>
<version>3.412.0</version>
<version-tag />
<platformVersion>3.413.0</platformVersion>
<dependencies>
Expand Down

0 comments on commit 6780f74

Please sign in to comment.