From 4a26d1865b5bb53b0524a9a5afc0de7b8512c8a8 Mon Sep 17 00:00:00 2001 From: Jipok Date: Wed, 21 Feb 2024 21:49:51 +0500 Subject: [PATCH] Add space before ssh command in index.hml --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index a872b53..12fd9c4 100644 --- a/index.html +++ b/index.html @@ -154,7 +154,7 @@

Login

var copyText = document.querySelector(".ssh-command"); var tempInput = document.createElement("input"); tempInput.style.opacity = "0"; - tempInput.value = copyText.innerText; + tempInput.value = ' ' + copyText.innerText; document.body.appendChild(tempInput); tempInput.select(); document.execCommand("copy");