diff --git a/awx/ui/src/components/LaunchPrompt/steps/SurveyStep.js b/awx/ui/src/components/LaunchPrompt/steps/SurveyStep.js index 1bf50dee96..2444580919 100644 --- a/awx/ui/src/components/LaunchPrompt/steps/SurveyStep.js +++ b/awx/ui/src/components/LaunchPrompt/steps/SurveyStep.js @@ -131,6 +131,7 @@ function MultipleChoiceField({ question }) { helpers.setTouched(true); helpers.setValue(''); }} + noResultsFoundText={t`No results found`} > {options.map((opt) => ( @@ -189,6 +190,7 @@ function MultiSelectField({ question }) { helpers.setTouched(true); helpers.setValue([]); }} + noResultsFoundText={t`No results found`} > {options.map((opt) => ( diff --git a/awx/ui/src/components/MultiSelect/TagMultiSelect.js b/awx/ui/src/components/MultiSelect/TagMultiSelect.js index 5440f2fdc1..f4e606741d 100644 --- a/awx/ui/src/components/MultiSelect/TagMultiSelect.js +++ b/awx/ui/src/components/MultiSelect/TagMultiSelect.js @@ -57,6 +57,7 @@ function TagMultiSelect({ onChange, value }) { selections={selections} isOpen={isExpanded} typeAheadAriaLabel={t`Select tags`} + noResultsFoundText={t`No results found`} > {renderOptions(options)} diff --git a/awx/ui/src/components/Search/Search.js b/awx/ui/src/components/Search/Search.js index e614314305..5bf74a9c1c 100644 --- a/awx/ui/src/components/Search/Search.js +++ b/awx/ui/src/components/Search/Search.js @@ -129,6 +129,7 @@ function Search({ isOpen={isSearchDropdownOpen} ouiaId="simple-key-select" isDisabled={isDisabled} + noResultsFoundText={t`No results found`} > {searchOptions} @@ -176,6 +177,7 @@ function Search({ ouiaId={`filter-by-${key}`} isDisabled={isDisabled} maxHeight={maxSelectHeight} + noResultsFoundText={t`No results found`} > {options.map(([optionKey, optionLabel]) => ( {booleanLabels.true || t`Yes`} diff --git a/awx/ui/src/screens/ActivityStream/ActivityStream.js b/awx/ui/src/screens/ActivityStream/ActivityStream.js index e11549f0b9..bb54049772 100644 --- a/awx/ui/src/screens/ActivityStream/ActivityStream.js +++ b/awx/ui/src/screens/ActivityStream/ActivityStream.js @@ -131,6 +131,7 @@ function ActivityStream() { selections={activityStreamType} isOpen={isTypeDropdownOpen} isGrouped + noResultsFoundText={t`No results found`} > diff --git a/awx/ui/src/screens/Credential/shared/CredentialForm.js b/awx/ui/src/screens/Credential/shared/CredentialForm.js index 74ba9f4378..a1a996c9e6 100644 --- a/awx/ui/src/screens/Credential/shared/CredentialForm.js +++ b/awx/ui/src/screens/Credential/shared/CredentialForm.js @@ -140,6 +140,7 @@ function CredentialFormFields({ initialTypeId, credentialTypes }) { isCreatable={false} maxHeight="300px" width="100%" + noResultsFoundText={t`No results found`} > {credentialTypeOptions.map((credType) => ( { setOptions([...options, { value: option }]); }} + noResultsFoundText={t`No results found`} > {options.map((option) => ( diff --git a/awx/ui/src/screens/Dashboard/DashboardGraph.js b/awx/ui/src/screens/Dashboard/DashboardGraph.js index 20c403abe5..2229eb2922 100644 --- a/awx/ui/src/screens/Dashboard/DashboardGraph.js +++ b/awx/ui/src/screens/Dashboard/DashboardGraph.js @@ -103,6 +103,7 @@ function DashboardGraph() { }} selections={periodSelection} isOpen={isPeriodDropdownOpen} + noResultsFoundText={t`No results found`} > {t`Past month`} diff --git a/awx/ui/src/screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js b/awx/ui/src/screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js index cbaa22574e..a6d3c8947d 100644 --- a/awx/ui/src/screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js +++ b/awx/ui/src/screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js @@ -135,6 +135,7 @@ const SCMSubForm = ({ autoPopulateProject }) => { value.trim(); setSourcePath([...sourcePath, value]); }} + noResultsFoundText={t`No results found`} > {sourcePath.map((path) => ( diff --git a/awx/ui/src/screens/Metrics/Metrics.js b/awx/ui/src/screens/Metrics/Metrics.js index 0eb175e4b1..bc57d75dcf 100644 --- a/awx/ui/src/screens/Metrics/Metrics.js +++ b/awx/ui/src/screens/Metrics/Metrics.js @@ -190,7 +190,7 @@ function Metrics() { setRenderedData([]); }} selections={instance} - placeholderText={t`Select a instance`} + placeholderText={t`Select an instance`} > {instances.map((inst) => ( diff --git a/awx/ui/src/screens/Template/Survey/SurveyReorderModal.js b/awx/ui/src/screens/Template/Survey/SurveyReorderModal.js index 8eae5ecc58..fd8b6a1070 100644 --- a/awx/ui/src/screens/Template/Survey/SurveyReorderModal.js +++ b/awx/ui/src/screens/Template/Survey/SurveyReorderModal.js @@ -151,6 +151,7 @@ function SurveyReorderModal({ aria-label={t`Multi-Select`} typeAheadAriaLabel={t`Multi-Select`} id={`survey-preview-multiSelect-${q.variable}`} + noResultsFoundText={t`No results found`} > {q.choices.length > 0 && q.choices diff --git a/awx/ui/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js b/awx/ui/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js index c1594539ba..caf6b95e5a 100644 --- a/awx/ui/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js +++ b/awx/ui/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js @@ -248,6 +248,7 @@ function NodeTypeStep({ isIdentifierRequired }) { typeAheadAriaLabel={t`Convergence select`} className="convergenceSelect" ouiaId="convergenceSelect" + noResultsFoundText={t`No results found`} > {t`Any`} diff --git a/awx/ui/src/screens/Template/shared/LabelSelect.js b/awx/ui/src/screens/Template/shared/LabelSelect.js index 893092fc78..7b7d0b307e 100644 --- a/awx/ui/src/screens/Template/shared/LabelSelect.js +++ b/awx/ui/src/screens/Template/shared/LabelSelect.js @@ -99,6 +99,7 @@ function LabelSelect({ value, placeholder, onChange, onError, createText }) { typeAheadAriaLabel={t`Select Labels`} placeholderText={placeholder} createText={createText} + noResultsFoundText={t`No results found`} > {renderOptions(options)} diff --git a/awx/ui/src/screens/Template/shared/PlaybookSelect.js b/awx/ui/src/screens/Template/shared/PlaybookSelect.js index c237593449..d2ee4c11d2 100644 --- a/awx/ui/src/screens/Template/shared/PlaybookSelect.js +++ b/awx/ui/src/screens/Template/shared/PlaybookSelect.js @@ -66,6 +66,7 @@ function PlaybookSelect({ onBlur={onBlur} isDisabled={isLoading || isDisabled} maxHeight="1000%" + noResultsFoundText={t`No results found`} > {options.map((opt) => (