Fixes #32022 - Fix table to display name instead of ID (#32051)

This commit is contained in:
Chris Cowan 2019-02-27 07:38:35 -07:00 committed by GitHub
parent 295de1ed7d
commit aeb5f7ba7a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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,