Changeset 0.28.0.5 (#177)
This commit is contained in:
@@ -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 */ }
|
||||
|
||||
Reference in New Issue
Block a user