Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed: issue of brokering run name to be dynamic on the run detail page(#87) #88

Merged
merged 2 commits into from
Feb 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
"Brokering": "Brokering",
"Brokering Runs": "Brokering Runs",
"Brokering run created": "Brokering run created",
"Brokering run name": "Brokering run name",
"Brokering safety stock": "Brokering safety stock",
"Built:": "Built: ",
"Cancel": "Cancel",
Expand Down Expand Up @@ -130,6 +129,7 @@
"Shipping method": "Shipping method",
"Sorry, login failed. Please try again": "Sorry, login failed. Please try again",
"Sort": "Sort",
"Status": "Status",
"Store": "Store",
"sales channel": "sales channel",
"select days": "select days",
Expand Down
2 changes: 1 addition & 1 deletion src/views/BrokeringQuery.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<ion-icon :icon="chevronUpOutline" />
</ion-chip>
</ion-item>
<ion-button expand="block" :disabled="!hasUnsavedChanges" @click="saveChanges">{{ translate("Save changes") }}</ion-button>
<ion-button class="ion-margin" expand="block" :disabled="!hasUnsavedChanges" @click="saveChanges">{{ translate("Save changes") }}</ion-button>
<ion-item-group>
<ion-item-divider color="light">
<ion-label>{{ translate("Filters") }}</ion-label>
Expand Down
2 changes: 1 addition & 1 deletion src/views/BrokeringRoute.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<ion-icon slot="icon-only" :icon="arrowBackOutline"/>
</ion-button>
</ion-buttons>
<ion-title>{{ translate("Brokering run name") }}</ion-title>
<ion-title>{{ currentRoutingGroup.groupName }}</ion-title>
</ion-toolbar>
</ion-header>
<ion-content>
Expand Down
Loading