SDA-3530 (Clear snippet window reference after close) (#1312)

* SDA-3530 - Clear snippet window reference after close

* SDA-3530 - Update about app snapshot
This commit is contained in:
Kiran Niranjan 2022-01-05 15:02:36 +05:30 committed by GitHub
parent c6fa5f6040
commit f63c61b50d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -28,7 +28,7 @@ exports[`about app should render correctly 1`] = `
<p
className="AboutApp-copyrightText"
>
© 2021 Symphony
© 2022 Symphony
</p>
</div>
</div>

View File

@ -1317,6 +1317,7 @@ export class WindowHandler {
public closeSnippingToolWindow() {
if (this.snippingToolWindow && windowExists(this.snippingToolWindow)) {
this.snippingToolWindow.close();
this.snippingToolWindow = null;
}
}