From 1540d0a5a51673357ba43ec01b03f4a18a8b246e Mon Sep 17 00:00:00 2001 From: Zhizhen He Date: Thu, 9 Oct 2025 10:54:18 +0800 Subject: [PATCH 1/2] Fix typo (#264) --- src-web/components/graphql/GraphQLDocsExplorer.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src-web/components/graphql/GraphQLDocsExplorer.tsx b/src-web/components/graphql/GraphQLDocsExplorer.tsx index f6564980..4148b6a8 100644 --- a/src-web/components/graphql/GraphQLDocsExplorer.tsx +++ b/src-web/components/graphql/GraphQLDocsExplorer.tsx @@ -210,7 +210,7 @@ function GraphQLExplorerHeader({ />
- +
); From 0358748729a4cdde4425c33918003f4847d69837 Mon Sep 17 00:00:00 2001 From: Zhizhen He Date: Thu, 9 Oct 2025 19:24:44 +0800 Subject: [PATCH 2/2] Fix icon paths in package.json (#265) --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 6d8e556c..e5b5c088 100644 --- a/package.json +++ b/package.json @@ -60,8 +60,8 @@ "build-plugins": "npm run --workspaces --if-present build", "test": "npm run --workspaces --if-present test", "icons": "run-p icons:*", - "icons:dev": "tauri icon src-tauri/icons/icon.png --output src-tauri/icons/release", - "icons:release": "tauri icon src-tauri/icons/icon-dev.png --output src-tauri/icons/dev", + "icons:dev": "tauri icon src-tauri/icons/icon-dev.png --output src-tauri/icons/dev", + "icons:release": "tauri icon src-tauri/icons/icon.png --output src-tauri/icons/release", "bootstrap": "run-p bootstrap:* && npm run --workspaces --if-present bootstrap", "bootstrap:vendor-node": "node scripts/vendor-node.cjs", "bootstrap:vendor-plugins": "node scripts/vendor-plugins.cjs",