Make domains LTR

This commit is contained in:
Nikita Karamov 2024-02-12 19:26:34 +01:00
parent 8d44d9b4d4
commit 461487a85f
No known key found for this signature in database
GPG Key ID: 41D6F71EE78E77CD
1 changed files with 1 additions and 0 deletions

View File

@ -137,6 +137,7 @@ const { instance, errors } = Astro.props;
const element = document.createElement("span");
element.classList.add("link");
element.textContent = host;
element.dir = "ltr";
element.addEventListener("click", () => {
instanceElement.value = host;
});