diff options
author | 2022-08-06 04:39:26 +0000 | |
---|---|---|
committer | 2022-08-06 04:39:26 +0000 | |
commit | 4de35f3b703db52f51463769e3aef4b23d2864e3 (patch) | |
tree | c6fea68d6368cf8ddfb098ac3159be71f265692a /examples/non-html-pages/src | |
parent | 24c8e7d853aa34aaa01204f715901c2610bfd9d6 (diff) | |
download | astro-4de35f3b703db52f51463769e3aef4b23d2864e3.tar.gz astro-4de35f3b703db52f51463769e3aef4b23d2864e3.tar.zst astro-4de35f3b703db52f51463769e3aef4b23d2864e3.zip |
[ci] format
Diffstat (limited to 'examples/non-html-pages/src')
-rw-r--r-- | examples/non-html-pages/src/pages/index.astro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/non-html-pages/src/pages/index.astro b/examples/non-html-pages/src/pages/index.astro index b6fc1decf..6d3873c44 100644 --- a/examples/non-html-pages/src/pages/index.astro +++ b/examples/non-html-pages/src/pages/index.astro @@ -12,7 +12,7 @@ const response = await fetch(`/about.json`); const data = await response.json(); document.getElementById( - "result" + 'result' ).innerHTML = `Load complete!<br/>Built with: <a href="${data.url}">${data.name}!</a>`; </script> </body> |