Skip to content

Commit

Permalink
Add names to search results for CYAC
Browse files Browse the repository at this point in the history
  • Loading branch information
f-osorio committed Dec 11, 2024
1 parent 1b6b5e1 commit e058bd0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion src/lib/utils_network.js
Original file line number Diff line number Diff line change
Expand Up @@ -2362,7 +2362,9 @@ const utilsNetwork = {
]);

} else if (mode == "CHILD"){
[resultsChildrenSubjects, resultsChildrenSubjectsComplex, resultsChildrenSubjectsSubdivisions] = await Promise.all([
[resultsNames, resultsNamesSubdivision, resultsChildrenSubjects, resultsChildrenSubjectsComplex, resultsChildrenSubjectsSubdivisions] = await Promise.all([
this.searchComplex(searchPayloadNames),
this.searchComplex(searchPayloadNamesSubdivision),
this.searchComplex(searchPayloadChildrenSubjects),
this.searchComplex(searchPayloadChildrenSubjectsComplex),
this.searchComplex(searchPayloadChildrenSubjectsSubdivision)
Expand Down
6 changes: 3 additions & 3 deletions src/stores/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export const useConfigStore = defineStore('config', {

versionMajor: 0,
versionMinor: 17,
versionPatch: 2,
versionPatch: 3,

regionUrls: {

Expand All @@ -25,8 +25,8 @@ export const useConfigStore = defineStore('config', {
profiles : 'http://localhost:9401/util/profiles/profile/prod',
starting: 'http://localhost:9401/util/profiles/starting/prod',

// profiles: 'https://raw.githubusercontent.com/lcnetdev/bfe-profiles/main/profile-prod/data.json',
profiles: 'https://raw.githubusercontent.com/lcnetdev/bfe-profiles/main/profile-stage/data.json',
profiles: 'https://raw.githubusercontent.com/lcnetdev/bfe-profiles/main/profile-prod/data.json',
// profiles: 'https://raw.githubusercontent.com/lcnetdev/bfe-profiles/main/profile-stage/data.json',
starting: 'https://raw.githubusercontent.com/lcnetdev/bfe-profiles/main/starting-prod/data.json',


Expand Down

0 comments on commit e058bd0

Please sign in to comment.