Changeset 0.28.0.5 (#177)

This commit is contained in:
2026-03-12 15:47:22 +00:00
parent 52bd36ba48
commit 8f20e5fa60
13 changed files with 225 additions and 107 deletions

View File

@@ -33,7 +33,7 @@ const ToolsToggle = (() => {
_loadDisabled();
try {
const resp = await API.getTools();
_tools = resp.data || [];
_tools = resp.tools || [];
_buildCategories();
_render();
_show();
@@ -52,7 +52,7 @@ const ToolsToggle = (() => {
async function refresh() {
try {
const resp = await API.getTools();
_tools = resp.data || [];
_tools = resp.tools || [];
_buildCategories();
_render();
} catch (e) { /* silent */ }