diff --git a/editor.planx.uk/src/@planx/components/ExternalPortal/Editor.tsx b/editor.planx.uk/src/@planx/components/ExternalPortal/Editor.tsx index 07c796c529..629fb1488b 100644 --- a/editor.planx.uk/src/@planx/components/ExternalPortal/Editor.tsx +++ b/editor.planx.uk/src/@planx/components/ExternalPortal/Editor.tsx @@ -1,3 +1,4 @@ +import MenuItem from "@mui/material/MenuItem"; import { ComponentType as TYPES, NodeTag, @@ -7,6 +8,7 @@ import React from "react"; import { ComponentTagSelect } from "ui/editor/ComponentTagSelect"; import ModalSection from "ui/editor/ModalSection"; import ModalSectionContent from "ui/editor/ModalSectionContent"; +import SelectInput from "ui/editor/SelectInput/SelectInput"; import { ICONS } from "../shared/icons"; @@ -50,19 +52,25 @@ const ExternalPortalForm: React.FC<{ - + {flows.map((flow) => { + return ( + ({ fontSize: theme.typography.body3 })} + key={flow.id} + value={flow.id} + > + {flow.text} + + ); + })} +