fix(site): escaped quote on demo page
This commit is contained in:
parent
cb85e3eafc
commit
93e07d4928
1 changed files with 2 additions and 2 deletions
|
@ -72,8 +72,8 @@
|
||||||
<script server:setup>
|
<script server:setup>
|
||||||
const name = "Nitro";
|
const name = "Nitro";
|
||||||
let greeting = {
|
let greeting = {
|
||||||
url: 'https://www.google.com',
|
url: "https://www.google.com",
|
||||||
message: "hello"
|
message: "hello"
|
||||||
};
|
};
|
||||||
var count = sum(1, 247);
|
var count = sum(1, 247);
|
||||||
greeting.message = "nope";
|
greeting.message = "nope";
|
||||||
|
|
Loading…
Reference in a new issue