diff --git a/awx/ui/src/components/Search/AdvancedSearch.js b/awx/ui/src/components/Search/AdvancedSearch.js index 154da44d15..80071d9c7c 100644 --- a/awx/ui/src/components/Search/AdvancedSearch.js +++ b/awx/ui/src/components/Search/AdvancedSearch.js @@ -195,6 +195,11 @@ function AdvancedSearch({ }; const renderTextInput = () => { + let placeholderText; + if (keySelection === 'labels' && lookupSelection === 'search') { + placeholderText = 'e.g. label_1,label_2'; + } + if (isTextInputDisabled) { return ( ); };