diff --git a/asreview/webapp/src/StyledComponents/StyledAlert.js b/asreview/webapp/src/StyledComponents/StyledAlert.js index fbfbab0cf..f21302187 100644 --- a/asreview/webapp/src/StyledComponents/StyledAlert.js +++ b/asreview/webapp/src/StyledComponents/StyledAlert.js @@ -1,5 +1,5 @@ import * as React from "react"; -import { Alert } from "@mui/material"; +import { Alert, Box } from "@mui/material"; export function ExplorationModeRecordAlert(props) { return ( @@ -7,7 +7,13 @@ export function ExplorationModeRecordAlert(props) { severity="info" sx={{ borderBottomRightRadius: 0, borderBottomLeftRadius: 0 }} > - {`Labeled as ${props.label} in the dataset`} + Labeled as{" "} + { + + {props.label} + + }{" "} + in the dataset ); }