-
-
-
+ {renderContent()}
);
}
SmartInventoryButton.propTypes = {
+ hasInvalidKeys: bool,
+ isDisabled: bool,
onClick: func.isRequired,
};
+SmartInventoryButton.defaultProps = {
+ hasInvalidKeys: false,
+ isDisabled: false,
+};
+
export default SmartInventoryButton;
diff --git a/awx/ui_next/src/screens/Inventory/shared/SmartInventoryForm.jsx b/awx/ui_next/src/screens/Inventory/shared/SmartInventoryForm.jsx
index 77523ffe32..393439efe2 100644
--- a/awx/ui_next/src/screens/Inventory/shared/SmartInventoryForm.jsx
+++ b/awx/ui_next/src/screens/Inventory/shared/SmartInventoryForm.jsx
@@ -82,6 +82,7 @@ const SmartInventoryFormFields = ({ inventory }) => {
isValid={!hostFilterMeta.touched || !hostFilterMeta.error}
isDisabled={!organizationField.value}
enableNegativeFiltering={false}
+ enableRelatedFuzzyFiltering={false}
/>