micro-models-agent 0.48.1 → 0.48.2
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/main.js +5 -1
- package/package.json +1 -1
package/dist/main.js
CHANGED
|
@@ -34100,7 +34100,7 @@ class Repl {
|
|
|
34100
34100
|
pendingClipboardImage = null;
|
|
34101
34101
|
exitOnClose = false;
|
|
34102
34102
|
activePlan = null;
|
|
34103
|
-
lastPlanSig =
|
|
34103
|
+
lastPlanSig = null;
|
|
34104
34104
|
rl;
|
|
34105
34105
|
agent;
|
|
34106
34106
|
config;
|
|
@@ -34401,6 +34401,10 @@ ${t("image.clipboard_empty")}`));
|
|
|
34401
34401
|
return;
|
|
34402
34402
|
}
|
|
34403
34403
|
this.activePlan = plan;
|
|
34404
|
+
if (this.lastPlanSig === null) {
|
|
34405
|
+
this.lastPlanSig = sig;
|
|
34406
|
+
return;
|
|
34407
|
+
}
|
|
34404
34408
|
if (sig !== this.lastPlanSig) {
|
|
34405
34409
|
this.lastPlanSig = sig;
|
|
34406
34410
|
renderer.planBlock(formatPlanChecklist(plan));
|