@vincenthanxiaodu/pi-web 1.202608.21 → 1.202608.22
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/client/assets/{CodeViewer-C7_YNiX4.js → CodeViewer-I72YZTch.js} +1 -1
- package/dist/client/assets/{TerminalPanel-V16B6IAA.js → TerminalPanel-CCTQ5gix.js} +1 -1
- package/dist/client/assets/{index-vN-bQgXV.js → index-DUdT8Swu.js} +332 -325
- package/dist/client/index.html +1 -1
- package/dist/server/sessions/piSessionService.js +4 -1
- package/dist/server/sessions/piSessionService.js.map +1 -1
- package/dist/server/sessions/subagentRuns.js +20 -6
- package/dist/server/sessions/subagentRuns.js.map +1 -1
- package/package.json +1 -1
package/dist/client/index.html
CHANGED
|
@@ -114,7 +114,7 @@
|
|
|
114
114
|
html, body { margin: 0; height: 100%; overflow: hidden; background: var(--pi-bg); color: var(--pi-text); }
|
|
115
115
|
body { min-height: 100dvh; }
|
|
116
116
|
</style>
|
|
117
|
-
<script type="module" crossorigin src="./assets/index-
|
|
117
|
+
<script type="module" crossorigin src="./assets/index-DUdT8Swu.js"></script>
|
|
118
118
|
<link rel="modulepreload" crossorigin href="./assets/vendor-editor-core-CXO8gGab.js">
|
|
119
119
|
<link rel="modulepreload" crossorigin href="./assets/vendor-editor-languages-CpW4sJsX.js">
|
|
120
120
|
</head>
|
|
@@ -1688,7 +1688,10 @@ export class PiSessionService {
|
|
|
1688
1688
|
// nothing on every real session, and the unit tests missed it because they
|
|
1689
1689
|
// built the fixture with the same key they read it back with: self
|
|
1690
1690
|
// consistent, and wrong about the disk.
|
|
1691
|
-
|
|
1691
|
+
// The parent's own state settles what a silent child means: while the turn
|
|
1692
|
+
// that spawned them is still running, a run without a result is still
|
|
1693
|
+
// running too, however long it has been thinking.
|
|
1694
|
+
return listSubagentRuns(dirname(sessionFile), basename(sessionFile, ".jsonl"), Date.now(), { parentActive: session.isStreaming });
|
|
1692
1695
|
}
|
|
1693
1696
|
/**
|
|
1694
1697
|
* Background-task runs for this session.
|