SDA-4433: Clicking on the Close button in edit pod URL screen does not close the About (#2045)

This commit is contained in:
NguyenTranHoangSym 2024-01-02 15:49:17 +07:00 committed by GitHub
parent 0dc3518793
commit 26909a3a5b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -49,7 +49,7 @@ exports[`about app should render correctly 1`] = `
className="AboutApp-close-button"
data-testid="CLOSE_BUTTON"
disabled={false}
onClick={[Function]}
onMouseDown={[Function]}
title="Close"
>
Close
@ -62,7 +62,7 @@ exports[`about app should render correctly 1`] = `
<p
className="AboutApp-copyright-text"
>
Copyright © 2023 Symphony
Copyright © 2024 Symphony
</p>
</div>
</div>

View File

@ -216,7 +216,7 @@ export default class AboutApp extends React.Component<{}, IState> {
? 'AboutApp-button-save-restart-disabled'
: 'AboutApp-close-button'
}
onClick={this.eventHandlers.onClose}
onMouseDown={this.eventHandlers.onClose}
title={closeButtonText}
data-testid={'CLOSE_BUTTON'}
ref={this.closeButtonRef}