From e3efcaa624ba06cf52eb5679fbb9c505473acbff Mon Sep 17 00:00:00 2001 From: Zhora Shalyapin <mr.imagine84@gmail.com> Date: Tue, 25 Feb 2025 08:14:21 +0000 Subject: [PATCH] format --- main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.js b/main.js index 9dc94ee..b5f9a57 100644 --- a/main.js +++ b/main.js @@ -117,7 +117,7 @@ let lat = document.querySelector(`input[name="cp[lattitude]"]`).value let lon = document.querySelector(`input[name="cp[longitude]"]`).value - const text = new Blob([`(${lat}, ${lon})`], { type: "text/plain" }); + const text = new Blob([`${lat}, ${lon}`], { type: "text/plain" }); const data = new ClipboardItem({ "text/plain": text }); await navigator.clipboard.write([data]); })