We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f84815 commit 3e3567aCopy full SHA for 3e3567a
assets/js/app.js
@@ -49,10 +49,10 @@ function copyRequestBoxUrl() {
49
let baseUrl = document.getElementById("baseUrl").innerText;
50
let input = document.getElementById("url");
51
52
- if(input.innerText === "") {
+ if(input.value === "") {
53
navigator.clipboard.writeText(baseUrl + input.placeholder)
54
} else {
55
- navigator.clipboard.writeText(baseUrl + input.innerText)
+ navigator.clipboard.writeText(baseUrl + input.value)
56
}
57
58
0 commit comments