feat: bold only action & text

This commit is contained in:
karishmas6
2024-09-23 17:51:53 +05:30
parent 0450e75bf7
commit 2552fa6aa4

View File

@@ -81,7 +81,7 @@ export const InterpretationButtons = ({ enableStepping }: InterpretationButtonsP
</Typography> </Typography>
<Box style={{ marginTop: '4px' }}> <Box style={{ marginTop: '4px' }}>
<Typography>Your previous action was: <Typography>Your previous action was:
<b>{decisionModal.action.charAt(0).toUpperCase() + decisionModal.action.slice(1)}, on an element with text {decisionModal.innerText} </b> <b>{decisionModal.action.charAt(0).toUpperCase() + decisionModal.action.slice(1)} </b>, on an element with text <b>{decisionModal.innerText} </b>
</Typography> </Typography>
</Box> </Box>
</React.Fragment>); </React.Fragment>);