Skip to content

Commit

Permalink
returns attr in profile search results
Browse files Browse the repository at this point in the history
  • Loading branch information
jhmullen authored and davelandry committed Sep 3, 2020
1 parent 42dd320 commit db39a1e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/cms/src/api/searchRoute.js
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,8 @@ module.exports = function(app) {
cube_name: row.cubeName
},
id: row.slug,
keywords: content && content.keywords ? content.keywords.join : ""
keywords: content && content.keywords ? content.keywords.join : "",
attr: content && content.attr ? content.attr : {}
};
};

Expand Down

0 comments on commit db39a1e

Please sign in to comment.