Skip to content

Commit

Permalink
Merge pull request #13883 from ZitaNemeckova/remove_inventories_from_…
Browse files Browse the repository at this point in the history
…host_metrics

Remove Inventories column for now
  • Loading branch information
TheRealHaoLiu authored Apr 19, 2023
2 parents f0badea + 36559a4 commit 3e509b3
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 7 deletions.
6 changes: 0 additions & 6 deletions awx/ui/src/screens/HostMetrics/HostMetrics.js
Original file line number Diff line number Diff line change
Expand Up @@ -131,12 +131,6 @@ function HostMetrics() {
>
{t`Automation`}
</HeaderCell>
<HeaderCell
sortKey="used_in_inventories"
tooltip={t`How many inventories is the host in, recomputed on a weekly schedule`}
>
{t`Inventories`}
</HeaderCell>
<HeaderCell
sortKey="deleted_counter"
tooltip={t`How many times was the host deleted`}
Expand Down
1 change: 0 additions & 1 deletion awx/ui/src/screens/HostMetrics/HostMetricsListItem.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ function HostMetricsListItem({ item, isSelected, onSelect, rowIndex }) {
{formatDateString(item.last_automation)}
</Td>
<Td dataLabel={t`Automation`}>{item.automated_counter}</Td>
<Td dataLabel={t`Inventories`}>{item.used_in_inventories || 0}</Td>
<Td dataLabel={t`Deleted`}>{item.deleted_counter}</Td>
</Tr>
);
Expand Down

0 comments on commit 3e509b3

Please sign in to comment.