From 673f722b718113b6d0aca9d7e92e7da4ab2f6049 Mon Sep 17 00:00:00 2001 From: nixocio Date: Tue, 22 Jun 2021 14:51:35 -0400 Subject: [PATCH] Update inventory list filters Update inventory list filters See: https://github.com/ansible/awx/issues/7675 --- .../Inventory/InventoryList/InventoryList.jsx | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/awx/ui_next/src/screens/Inventory/InventoryList/InventoryList.jsx b/awx/ui_next/src/screens/Inventory/InventoryList/InventoryList.jsx index b31f32e097..efc0133ce4 100644 --- a/awx/ui_next/src/screens/Inventory/InventoryList/InventoryList.jsx +++ b/awx/ui_next/src/screens/Inventory/InventoryList/InventoryList.jsx @@ -168,6 +168,18 @@ function InventoryList() { key: 'name__icontains', isDefault: true, }, + { + name: t`Inventory Type`, + key: 'or__kind', + options: [ + ['', t`Inventory`], + ['smart', t`Smart Inventory`], + ], + }, + { + name: t`Organization`, + key: 'organization__name', + }, { name: t`Description`, key: 'description__icontains',