@serkanalgur/opencode-nexus 2.3.0 → 2.3.1
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/dist/tui.js +11 -12
- package/package.json +1 -1
package/dist/tui.js
CHANGED
|
@@ -34955,18 +34955,17 @@ var tui_default = define({
|
|
|
34955
34955
|
}, undefined, true, undefined, this)
|
|
34956
34956
|
]
|
|
34957
34957
|
}, undefined, true, undefined, this);
|
|
34958
|
-
} catch {
|
|
34959
|
-
|
|
34960
|
-
|
|
34961
|
-
|
|
34962
|
-
|
|
34963
|
-
|
|
34964
|
-
|
|
34965
|
-
|
|
34966
|
-
|
|
34967
|
-
|
|
34968
|
-
|
|
34969
|
-
return `\uD83E\uDD16 ${parts.join(", ")}`;
|
|
34958
|
+
} catch (err) {
|
|
34959
|
+
console.error("[nexus] sidebar render error:", err);
|
|
34960
|
+
try {
|
|
34961
|
+
context.ui.toast.show({
|
|
34962
|
+
title: "Nexus Sidebar Error",
|
|
34963
|
+
message: err instanceof Error ? err.message : String(err),
|
|
34964
|
+
variant: "error",
|
|
34965
|
+
duration: 5000
|
|
34966
|
+
});
|
|
34967
|
+
} catch {}
|
|
34968
|
+
return null;
|
|
34970
34969
|
}
|
|
34971
34970
|
}
|
|
34972
34971
|
});
|