diff --git a/web/src/components/storage/ProposalPage.jsx b/web/src/components/storage/ProposalPage.jsx index 206f5de105..911c5e66b1 100644 --- a/web/src/components/storage/ProposalPage.jsx +++ b/web/src/components/storage/ProposalPage.jsx @@ -21,11 +21,12 @@ import React, { useReducer, useEffect } from "react"; import { Alert } from "@patternfly/react-core"; +import { Link } from "react-router-dom"; import { useInstallerClient } from "~/context/installer"; import { useCancellablePromise } from "~/utils"; import { Icon } from "~/components/layout"; -import { Page, SectionSkeleton } from "~/components/core"; +import { Page, PageOptions, SectionSkeleton } from "~/components/core"; import { ProposalTargetSection, ProposalSettingsSection, @@ -113,8 +114,14 @@ export default function ProposalPage() { }; return ( - + + + + + Configure iSCSI + + ); }