Skip to content

Commit

Permalink
Merge branch 'master' into api-sampleStore-rebuild
Browse files Browse the repository at this point in the history
  • Loading branch information
pallavi2209 committed Mar 4, 2017
2 parents 0f21334 + 250c490 commit c1f5d94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion view/perspective/configCreatePerspective.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ function getTagsFromResources(array) {
// get all tags
let cumulativeArr = [];
for (let i = array.length - 1; i >= 0; i--) {
if (array[i].tags.length) {
if (array[i].tags && array[i].tags.length) {
cumulativeArr.push(...array[i].tags);
}
}
Expand Down

0 comments on commit c1f5d94

Please sign in to comment.