diff --git a/ui/src/hosts/components/HostsTable.js b/ui/src/hosts/components/HostsTable.js index 61c9a47d69..9b3f612f43 100644 --- a/ui/src/hosts/components/HostsTable.js +++ b/ui/src/hosts/components/HostsTable.js @@ -10,6 +10,7 @@ const HostsTable = React.createClass({ })), source: PropTypes.shape({ id: PropTypes.string.isRequired, + name: PropTypes.string.isRequired, }).isRequired, }, @@ -55,7 +56,12 @@ const HostsTable = React.createClass({ return (
- +
+ +
+ Source: {source.name} +
+
diff --git a/ui/src/style/enterprise_style/hosts.scss b/ui/src/style/enterprise_style/hosts.scss index 6489c2baf7..39069c3b67 100644 --- a/ui/src/style/enterprise_style/hosts.scss +++ b/ui/src/style/enterprise_style/hosts.scss @@ -1,3 +1,9 @@ .sortable-header { cursor: pointer; } + +.host-table-header { + display: flex; + align-items: center; + justify-content: space-between; +}