diff --git a/awx/ui_next/src/components/Lookup/ExecutionEnvironmentLookup.js b/awx/ui_next/src/components/Lookup/ExecutionEnvironmentLookup.js index b7d4ed8a90..8ab4ad0203 100644 --- a/awx/ui_next/src/components/Lookup/ExecutionEnvironmentLookup.js +++ b/awx/ui_next/src/components/Lookup/ExecutionEnvironmentLookup.js @@ -20,6 +20,7 @@ const QS_CONFIG = getQSConfig('execution_environments', { }); function ExecutionEnvironmentLookup({ + id, globallyAvailable, helperTextInvalid, isDefaultEnvironment, @@ -154,7 +155,7 @@ function ExecutionEnvironmentLookup({ const renderLookup = () => ( <> } helperTextInvalid={helperTextInvalid} @@ -231,6 +232,7 @@ function ExecutionEnvironmentLookup({ } ExecutionEnvironmentLookup.propTypes = { + id: string, value: ExecutionEnvironment, popoverContent: string, onChange: func.isRequired, @@ -243,6 +245,7 @@ ExecutionEnvironmentLookup.propTypes = { }; ExecutionEnvironmentLookup.defaultProps = { + id: 'execution-environments', popoverContent: '', isDefaultEnvironment: false, isGlobalDefaultEnvironment: false, diff --git a/awx/ui_next/src/components/Lookup/InventoryLookup.js b/awx/ui_next/src/components/Lookup/InventoryLookup.js index 58811a9a61..105f62da4b 100644 --- a/awx/ui_next/src/components/Lookup/InventoryLookup.js +++ b/awx/ui_next/src/components/Lookup/InventoryLookup.js @@ -236,6 +236,7 @@ function InventoryLookup({ } InventoryLookup.propTypes = { + fieldId: string, value: Inventory, onChange: func.isRequired, required: bool, @@ -247,6 +248,7 @@ InventoryLookup.propTypes = { }; InventoryLookup.defaultProps = { + fieldId: 'inventory', value: null, required: false, isOverrideDisabled: false, diff --git a/awx/ui_next/src/components/Lookup/Lookup.js b/awx/ui_next/src/components/Lookup/Lookup.js index 34160968f1..c4d1554020 100644 --- a/awx/ui_next/src/components/Lookup/Lookup.js +++ b/awx/ui_next/src/components/Lookup/Lookup.js @@ -128,7 +128,7 @@ function Lookup(props) {