File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -175,7 +175,7 @@ export const Modal: React.FC<ModalProps> = ({
175
175
{ ...props }
176
176
>
177
177
{ title && (
178
- < ModalStyledHeader data-testid = "modal-header" >
178
+ < ModalStyledHeader className = 'modal-header' data-testid = "modal-header" >
179
179
{ headerIcon && < Box data-testid = "modal-header-icon" > { headerIcon } </ Box > }
180
180
< Typography component = { 'div' } variant = "h6" data-testid = "modal-title" >
181
181
{ title }
@@ -199,7 +199,7 @@ export const Modal: React.FC<ModalProps> = ({
199
199
) }
200
200
</ CustomTooltip >
201
201
) }
202
- < CloseBtn onClick = { closeModal } data-testid = "modal-close-btn" >
202
+ < CloseBtn onClick = { closeModal } className = 'modal-close-btn' data-testid = "modal-close-btn" >
203
203
< CloseIcon { ...iconLarge } fill = "#fff" > </ CloseIcon >
204
204
</ CloseBtn >
205
205
</ div >
@@ -214,7 +214,7 @@ export const Modal: React.FC<ModalProps> = ({
214
214
215
215
export const ModalFooter : React . FC < ModalFooterProps > = ( { helpText, children, variant } ) => {
216
216
return (
217
- < StyledFooter variant = { variant } hasHelpText = { ! ! helpText } >
217
+ < StyledFooter className = 'modal-footer' variant = { variant } hasHelpText = { ! ! helpText } >
218
218
{ helpText && (
219
219
// <CustomTooltip title={helpText} variant="standard" placement="top">
220
220
// <IconButton>
You can’t perform that action at this time.
0 commit comments