Skip to content

Commit

Permalink
Add space before ssh command in index.hml
Browse files Browse the repository at this point in the history
  • Loading branch information
Jipok committed Feb 21, 2024
1 parent ac95251 commit 4a26d18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ <h1>Login</h1>
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");
Expand Down

0 comments on commit 4a26d18

Please sign in to comment.