Skip to content

Commit

Permalink
fix: fix suggesting site in select protected Resource drawer - EXO-70336
Browse files Browse the repository at this point in the history
 (#69)

Before this change, a log error is displayed when retrieving sites because some group sites have null navigation issues
After this change, Empty navigation sites were excluded since we didn't need the site without navigations
  • Loading branch information
GouadriaHanen committed Mar 29, 2024
1 parent 073eb5e commit 121a298
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ export default {
}
},
getNavigations() {
return this.$siteService.getSites(null, 'USER', 'global').then(data => {
return this.$siteService.getSites(null, 'USER', 'global', true).then(data => {
const navs = data;
navs.forEach(nav => {
nav.label = nav.displayName ;
Expand Down

0 comments on commit 121a298

Please sign in to comment.