From 74f06817148691ac53c7015fb285e6c977c5e3cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Iv=C3=A1n=20L=C3=B3pez=20Gonz=C3=A1lez?= Date: Tue, 14 Mar 2023 15:49:36 +0000 Subject: [PATCH] [web] Sidebar option for iSCSI page --- web/src/components/storage/ProposalPage.jsx | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) 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 + + ); }