In current Fedora Rawhide Workstation live, when webui first runs, if you open the kebab menu, the "Launch storage editor" link is greyed out - even though it's supposed to be active from this page ("Installation method"). To get it to activate you have to pick some option and hit Next to reach Storage configuration, then hit Back to get back to Installation method. Now it'll be active. I think this is because nothing does `setCurrentStepId("installation-method");` when the installer first starts up, but I tried this: --- a/src/components/app.jsx +++ b/src/components/app.jsx @@ -86,6 +86,8 @@ export const Application = ({ conf, dispatch, isFetching, onCritFail, osRelease, // On live media rebooting the system will actually shut it off const title = cockpit.format(_("$0 installation"), osRelease.PRETTY_NAME); + // Set initial step ID + setCurrentStepId("installation-method"); return ( <> ...and it seems to make the installer crash, so I don't know the right way to fix this.
Tried this instead: --- a/src/components/app.jsx +++ b/src/components/app.jsx @@ -54,7 +54,7 @@ export const ApplicationLoading = () => ( export const Application = ({ conf, dispatch, isFetching, onCritFail, osRelease, reportLinkURL }) => { const [storeInitialized, setStoreInitialized] = useState(false); const [showStorage, setShowStorage] = useState(false); - const [currentStepId, setCurrentStepId] = useState(); + const [currentStepId, setCurrentStepId] = useState("installation-method"); const address = useAddress(); const { path } = usePageLocation(); it doesn't crash, but also doesn't fix the bug, so I'm a bit stumped.
Upstream fix: https://github.com/rhinstaller/anaconda-webui/pull/602
FEDORA-2025-cd32402343 (anaconda-webui-22-1.fc42) has been submitted as an update to Fedora 42. https://bodhi.fedoraproject.org/updates/FEDORA-2025-cd32402343
FEDORA-2025-cd32402343 (anaconda-webui-22-1.fc42) has been pushed to the Fedora 42 stable repository. If problem still persists, please make note of it in this bug report.