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

Update spinner message for automatches #130

Merged
merged 1 commit into from
Apr 10, 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
1 change: 1 addition & 0 deletions ui/src/locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@
"full_view": "Full view",
"phone": "Phone",
"loading_potential": "Loading potential matches",
"loading_auto": "Loading auto matches",
"something_wrong": "Oops, something went wrong",
"Temporary_cr_id": "Temporary CR ID",
"saving": "Saving...",
Expand Down
1 change: 1 addition & 0 deletions ui/src/locales/fr.json
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@
"full_view":"Vue complète",
"phone":"Téléphone",
"loading_potential":"Chargement de correspondances potentielles",
"loading_auto": "Chargement des correspondances automatiques",
"something_wrong":"Oups, quelque chose s'est mal passé",
"Temporary_cr_id":"CR ID temporaire",
"saving":"Sauvegarde en cours ...",
Expand Down
3 changes: 3 additions & 0 deletions ui/src/views/Resolve.vue
Original file line number Diff line number Diff line change
Expand Up @@ -319,6 +319,9 @@ export default {
this.$store.state.progress.enable = true;
this.$store.state.progress.width = "300px";
this.$store.state.progress.title = this.$t('loading_potential');
if(this.$route.query.flagType === 'autoMatches'){
this.$store.state.progress.title = this.$t('loading_auto');
}
axios.get(`/ocrux/match/potential-matches/${this.$route.params.clientId}`).then((resp) => {
let extRegexPattern = /^extension_/;

Expand Down
Loading