open-agents-ai 0.141.3 → 0.141.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/dist/index.js +3 -9
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -57912,19 +57912,13 @@ Rationale: ${proposal.rationale}${provenanceNote}`;
|
|
|
57912
57912
|
headerBtnActive = command;
|
|
57913
57913
|
(async () => {
|
|
57914
57914
|
try {
|
|
57915
|
-
|
|
57916
|
-
if (isOverlayCmd) {
|
|
57917
|
-
await handleSlashCommand(command, commandCtxRef);
|
|
57918
|
-
} else {
|
|
57919
|
-
writeContent(() => {
|
|
57920
|
-
handleSlashCommand(command, commandCtxRef).catch(() => {
|
|
57921
|
-
});
|
|
57922
|
-
});
|
|
57923
|
-
}
|
|
57915
|
+
await writeContentAsync(() => handleSlashCommand(command, commandCtxRef));
|
|
57924
57916
|
} catch {
|
|
57925
57917
|
}
|
|
57926
57918
|
headerBtnActive = null;
|
|
57927
57919
|
if (statusBar.isActive) {
|
|
57920
|
+
statusBar.disableMouseTracking();
|
|
57921
|
+
statusBar.enableMouseTracking();
|
|
57928
57922
|
banner.renderCurrentFrame();
|
|
57929
57923
|
statusBar.refreshDisplay();
|
|
57930
57924
|
}
|
package/package.json
CHANGED