Skip to content

Commit

Permalink
Merge pull request #162 from lcnetdev/bfp-285-cyac-include-naf
Browse files Browse the repository at this point in the history
[BFP 285 ] Add names to search results for CYAC
  • Loading branch information
f-osorio authored Dec 11, 2024
2 parents 1b6b5e1 + e058bd0 commit e58236b
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 e58236b

Please sign in to comment.