Update PanelContainerComponent.tsx

This commit is contained in:
MokireddySampath 2023-07-26 22:56:08 +05:30 committed by GitHub
parent ec9d56e55f
commit c727d82cdd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -79,7 +79,7 @@ export class PanelContainerComponent extends React.Component<PanelContainerProps
private onDissmiss = (ev?: KeyboardEvent | React.SyntheticEvent<HTMLElement>): void => {
const collection = useSelectedNode.getState().findSelectedCollection();
const targetElementDataTest: string | undefined = collection.id();
const targetElementDataTest: string = collection.id();
const targetElement: HTMLElement | null = document.querySelector(`[data-test="${targetElementDataTest}"]`);
if (ev && (ev.target as HTMLElement).id === "notificationConsoleHeader") {
ev.preventDefault();