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: Add a message on miscellaneous page when no jobs found(#2t2wdhn) #239

Merged
merged 2 commits into from
Sep 9, 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 @@ -166,9 +166,9 @@
"Sync products": "Sync products",
"Sync products and category structures from Shopify into HotWax Commerce and keep them up to date.": "Sync products and category structures from Shopify into HotWax Commerce and keep them up to date.",
"The changes have been saved": "The changes have been saved",
"There are no jobs miscellaneous right now": "There are no jobs miscellaneous right now",
"There are no jobs pending right now": "There are no jobs pending right now",
"There are no jobs running right now": "There are no jobs running right now",
"There are no miscellaneous jobs right now": "There are no miscellaneous jobs right now",
"This job has been skipped": "This job has been skipped",
"This job has been canceled": "This job has been canceled",
"This job may take several minutes to run. Wait till the job has moved to the pipeline history before checking results.": "This job may take several minutes to run.{ space } Wait till the job has moved to the pipeline history before checking results.",
Expand Down
2 changes: 1 addition & 1 deletion src/views/Miscellaneous.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<section>
<!-- Empty state -->
<div v-if="miscellaneousJobs?.length === 0">
<p class="ion-text-center">{{ $t("There are no jobs miscellaneous right now")}}</p>
<p class="ion-text-center">{{ $t("There are no miscellaneous jobs right now")}}</p>
<div class="ion-text-center">
<ion-button fill="outline" @click="refreshJobs()">
{{ $t('retry') }}
Expand Down