import React from "react"; import Modal from "components/Modal"; import Button from "components/buttons/Button"; import FleetAce from "components/FleetAce"; import CustomLink from "components/CustomLink"; import Editor from "components/Editor"; const baseClass = "advanced-options-modal"; interface IAdvancedOptionsModalProps { installScript: string; preInstallQuery?: string; postInstallScript?: string; onExit: () => void; } const AdvancedOptionsModal = ({ installScript, preInstallQuery, postInstallScript, onExit, }: IAdvancedOptionsModalProps) => { return ( <>

Advanced options are read-only. To change options, delete software and add again.

{preInstallQuery && (
Pre-install condition: Software will be installed only if the{" "} } />
)} {postInstallScript && (
Post-install script:
)}
); }; export default AdvancedOptionsModal;