From 1ae70759b2de009094857801ab4bfc55e2ef9936 Mon Sep 17 00:00:00 2001
From: Leonardo Mendoza Fernadez
{
+ if (fragment === 'remove-duplicate-record') {
+ const element = this._window.document.querySelector('#cy-remove-duplicate-panel')
+ this.displayPanelByHashName('remove-duplicate')
+ setTimeout(() => {
+ if (element) {
+ element.scrollIntoView()
+ }
+ })
+ }
+ })
+ }
+
+ private displayPanelByHashName(hash: string) {
switch (hash) {
case 'download-data':
this.settingDownload = true
From e841a46fd34a1b26c6aace6ca857b272e48067c7 Mon Sep 17 00:00:00 2001
From: Leonardo Mendoza Fernadez