Skip to content

Commit

Permalink
ISSUE-447 fix field value not getting populated on search page (#449)
Browse files Browse the repository at this point in the history
ISSUE-447 fix filed value not getting populated on search page

Co-authored-by: Ubuntu <ubuntu@ip-172-31-22-204.ap-south-1.compute.internal>
  • Loading branch information
bjp232004 and Ubuntu committed Aug 23, 2022
1 parent 3a8e684 commit 5706156
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/src/components/search/SearchResult.vue
Original file line number Diff line number Diff line change
Expand Up @@ -564,7 +564,7 @@ export default defineComponent({
if (["_id", "_index", "_score"].includes(indexData.columns[i])) {
return row[indexData.columns[i]];
} else {
return Object.byString(row._source, indexData.columns[i]);
return row._source[indexData.columns[i]];
}
},
align: "left",
Expand Down

0 comments on commit 5706156

Please sign in to comment.