diff --git a/www/src/components/SideDrawer/Form/FieldWrapper.tsx b/www/src/components/SideDrawer/Form/FieldWrapper.tsx index 1f1883a6..2292b242 100644 --- a/www/src/components/SideDrawer/Form/FieldWrapper.tsx +++ b/www/src/components/SideDrawer/Form/FieldWrapper.tsx @@ -1,7 +1,14 @@ import React, { Suspense } from "react"; -import { makeStyles, createStyles, Grid, Typography } from "@material-ui/core"; +import { + makeStyles, + createStyles, + Grid, + Typography, + IconButton, +} from "@material-ui/core"; import DebugIcon from "@material-ui/icons/BugReportOutlined"; +import LaunchIcon from "@material-ui/icons/Launch"; import ErrorBoundary from "components/ErrorBoundary"; import FieldSkeleton from "./FieldSkeleton"; @@ -26,6 +33,7 @@ const useStyles = makeStyles(theme => whiteSpace: "normal", wordBreak: "break-all", }, + launchButton: { margin: theme.spacing(-4, 0.5, 0, 0) }, }) ); @@ -76,9 +84,31 @@ export default function FieldWrapper({ {debugText && ( - - {debugText} - + + + + {debugText} + + + + + + + + + )} );