diff --git a/ui/webui/src/components/AnacondaWizard.jsx b/ui/webui/src/components/AnacondaWizard.jsx index 4865172f275..92588544e60 100644 --- a/ui/webui/src/components/AnacondaWizard.jsx +++ b/ui/webui/src/components/AnacondaWizard.jsx @@ -20,13 +20,14 @@ import React, { useState, useMemo } from "react"; import { ActionList, Button, + HelperText, + HelperTextItem, Modal, ModalVariant, PageSection, PageSectionTypes, PageSectionVariants, Stack, - Tooltip, Wizard, WizardFooter, WizardContextConsumer, @@ -359,6 +360,13 @@ const Footer = ({ setQuitWaitsConfirmation={setQuitWaitsConfirmation} isBootIso={isBootIso} />} + {activeStep.id === "storage-devices" && !isFormValid && + + + {_("To continue, select the devices to install to.")} + + } - {activeStep.id === "storage-devices" && - - {_("To continue, select the devices to install to.")} - - } - // Only show the tooltip on installation destination spoke that is not valid (no disks selected). - // NOTE: As PatternFly Button with isDisabled set apprently does not get any mouse events anymore, - // we need to manually trigger the tooltip. - reference={() => document.getElementById("installation-next-btn")} - trigger="manual" - isVisible={!isFormValid} - />}