feat: capitalize first letter

This commit is contained in:
karishmas6
2024-09-23 17:47:04 +05:30
parent 6149e9e619
commit d4becc90aa

View File

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