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

Improved label to "eCom Store" on Settings page (#23tw4yf) #203

Merged
merged 3 commits into from
Jul 28, 2022
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 @@ -142,7 +142,7 @@
"Search jobs": "Search jobs",
"Search time zones": "Search time zones",
"Select time zone": "Select time zone",
"Shop": "Shop",
"eCom Store": "eCom Store",
"Shopify source": "Shopify source",
"Something went wrong": "Something went wrong",
"Sorry, your username or password is incorrect. Please try again.": "Sorry, your username or password is incorrect. Please try again.",
Expand Down
2 changes: 1 addition & 1 deletion src/views/Settings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<!-- Select eCom store -->
<ion-item>
<ion-icon :icon="globeOutline" slot="start" />
<ion-label>{{$t("Shop")}}</ion-label>
<ion-label>{{$t("eCom Store")}}</ion-label>
<ion-select interface="popover" :value="currentEComStore.productStoreId" @ionChange="setEComStore($event)">
<ion-select-option v-for="store in (userProfile ? userProfile.stores : [])" :key="store.productStoreId" :value="store.productStoreId" >{{ store.storeName }}</ion-select-option>
</ion-select>
Expand Down