Addressed PR comments

This commit is contained in:
Julio-Oliveira-Encora 2024-05-20 16:08:53 -03:00
parent 1157a27467
commit 49e9c71be8

View File

@ -21,7 +21,7 @@ function quickSearchEventHandler(event: Event): void {
* Clear the existing search parameters in the link to export Current View.
*/
function clearLinkParams(): void {
const link = document.getElementById("current_view") as HTMLLinkElement;
const link = document.getElementById("export_current_view") as HTMLLinkElement;
let linkUpdated = link?.href.split("&")[0];
link.setAttribute("href", linkUpdated);
}