Skip to content

Commit

Permalink
Merge pull request #130 from reagan-meant/Fx-ld
Browse files Browse the repository at this point in the history
Update spinner message for automatches
  • Loading branch information
ashaban authored Apr 10, 2024
2 parents 89c489a + 9676951 commit ba3de79
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
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

0 comments on commit ba3de79

Please sign in to comment.