galaxy-opc-plugin 0.3.2 → 0.3.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -1
- package/src/web/config-ui.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "galaxy-opc-plugin",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.4",
|
|
4
4
|
"description": "星环 Galaxy OPC — 一人公司孵化与赋能平台 OpenClaw 插件",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"openclaw",
|
|
@@ -44,6 +44,7 @@
|
|
|
44
44
|
"vitest": "^2.1.9"
|
|
45
45
|
},
|
|
46
46
|
"scripts": {
|
|
47
|
+
"postinstall": "npm rebuild better-sqlite3",
|
|
47
48
|
"test": "vitest",
|
|
48
49
|
"test:ui": "vitest --ui",
|
|
49
50
|
"test:run": "vitest run",
|
package/src/web/config-ui.ts
CHANGED
|
@@ -4162,7 +4162,7 @@ export function registerConfigUi(api: OpenClawPluginApi, db: OpcDatabase, gatewa
|
|
|
4162
4162
|
}
|
|
4163
4163
|
|
|
4164
4164
|
// Serve HTML page for all other /opc/admin paths
|
|
4165
|
-
sendHtml(res, buildPageHtml(
|
|
4165
|
+
sendHtml(res, buildPageHtml(false));
|
|
4166
4166
|
return true;
|
|
4167
4167
|
} catch (err) {
|
|
4168
4168
|
res.writeHead(500, { "Content-Type": "application/json; charset=utf-8" });
|