test shell script

This commit is contained in:
joseph le 2023-09-22 13:38:42 +07:00
parent be87baf5fa
commit 1800c1239b
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ const ShowLog = () => {
const scrollToElement = () => {
const hash = window.location.hash;
if (hash) {
const targetElement = document.getElementById(hash.slice(1)); // Replace "3" with the desired id
const targetElement = document.getElementById(hash.slice(1));
if (targetElement) {
targetElement.scrollIntoView({ behavior: "smooth" });
}