diff --git a/package.json b/package.json index e487f51..043ed2f 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "type": "git", "url": "https://github.com/kunkunsh/kunkun-ext-json" }, - "version": "0.1.0", + "version": "0.1.1", "license": "MIT", "kunkun": { "name": "JSON Formatter/Inspector", diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte index de6704d..a6a4d81 100644 --- a/src/routes/+page.svelte +++ b/src/routes/+page.svelte @@ -5,7 +5,7 @@ import { Inspect } from 'svelte-inspect-value'; let rawJson = $state(''); - let jsonData = $state({}); + let jsonData = $state(undefined); function loadJsonFromClipboard() { clipboard.readText().then((text) => { @@ -40,7 +40,21 @@
-
- +
+ +