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

Updated: UI for shipping orders card on settings page (#85zrmkx7q) #183

Merged
merged 1 commit into from
Feb 9, 2023
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: 2 additions & 0 deletions src/locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@
"Ship to customer": "Ship to customer",
"Ship to this address": "Ship to this address",
"Shop": "Shop",
"Show shipping orders": "Show shipping orders",
"Size": "Size",
"Something went wrong": "Something went wrong",
"Specify which facility you want to operate from. Order, inventory and other configuration data will be specific to the facility you select.": "Specify which facility you want to operate from. Order, inventory and other configuration data will be specific to the facility you select.",
Expand All @@ -94,5 +95,6 @@
"Warehouse": "Warehouse",
"Worn Display": "Worn Display",
"This order will be removed from your dashboard. This action cannot be undone.": "This order will be removed from your dashboard.{ space } This action cannot be undone.",
"View shipping orders along with pickup orders.": "View shipping orders along with pickup orders.",
"Zipcode": "Zipcode"
}
7 changes: 4 additions & 3 deletions src/views/Settings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -64,14 +64,15 @@

<ion-card>
<ion-card-header>
<ion-card-subtitle>
{{ $t("Shipping orders") }}
</ion-card-subtitle>
<ion-card-title>
{{ $t("Shipping orders") }}
</ion-card-title>
</ion-card-header>
<ion-card-content>
{{ $t('View shipping orders along with pickup orders.') }}
</ion-card-content>
<ion-item lines="none">
<ion-label>{{ $t("Show shipping orders") }}</ion-label>
<ion-toggle :checked="showShippingOrders" @ionChange="setShowShippingOrdersPreference($event)" slot="end" />
</ion-item>
</ion-card>
Expand Down