Skip to content

Commit

Permalink
Fixes elastic#32022 - Fix table to display name instead of ID
Browse files Browse the repository at this point in the history
  • Loading branch information
simianhacker committed Feb 26, 2019
1 parent 7559941 commit 4683abe
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ export const TableView = injectI18n(
const items = nodes.map(node => {
const name = last(node.path);
return {
name: (name && name.value) || 'unknown',
name: (name && name.label) || 'unknown',
...getGroupPaths(node.path).reduce(
(acc, path, index) => ({
...acc,
Expand Down

0 comments on commit 4683abe

Please sign in to comment.