mirror of
https://github.com/ansible/awx.git
synced 2026-05-11 19:37:38 -02:30
Merge pull request #13883 from ZitaNemeckova/remove_inventories_from_host_metrics
Remove Inventories column for now
This commit is contained in:
@@ -131,12 +131,6 @@ function HostMetrics() {
|
|||||||
>
|
>
|
||||||
{t`Automation`}
|
{t`Automation`}
|
||||||
</HeaderCell>
|
</HeaderCell>
|
||||||
<HeaderCell
|
|
||||||
sortKey="used_in_inventories"
|
|
||||||
tooltip={t`How many inventories is the host in, recomputed on a weekly schedule`}
|
|
||||||
>
|
|
||||||
{t`Inventories`}
|
|
||||||
</HeaderCell>
|
|
||||||
<HeaderCell
|
<HeaderCell
|
||||||
sortKey="deleted_counter"
|
sortKey="deleted_counter"
|
||||||
tooltip={t`How many times was the host deleted`}
|
tooltip={t`How many times was the host deleted`}
|
||||||
|
|||||||
@@ -21,7 +21,6 @@ function HostMetricsListItem({ item, isSelected, onSelect, rowIndex }) {
|
|||||||
{formatDateString(item.last_automation)}
|
{formatDateString(item.last_automation)}
|
||||||
</Td>
|
</Td>
|
||||||
<Td dataLabel={t`Automation`}>{item.automated_counter}</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>
|
<Td dataLabel={t`Deleted`}>{item.deleted_counter}</Td>
|
||||||
</Tr>
|
</Tr>
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user