abmux 0.0.6 → 0.0.7
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/cli/index.js +3 -5
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -597,7 +597,7 @@ var createUsecases = (context) => ({
|
|
|
597
597
|
// package.json
|
|
598
598
|
var package_default = {
|
|
599
599
|
name: "abmux",
|
|
600
|
-
version: "0.0.
|
|
600
|
+
version: "0.0.7",
|
|
601
601
|
repository: {
|
|
602
602
|
type: "git",
|
|
603
603
|
url: "https://github.com/cut0/abmux.git"
|
|
@@ -1094,9 +1094,6 @@ var SessionOverviewPanel = ({
|
|
|
1094
1094
|
return [...summaryLines, ...sessionLines];
|
|
1095
1095
|
}, [overallSummary, items, groups]);
|
|
1096
1096
|
const clampedCursor = cursor >= lines.length ? Math.max(0, lines.length - 1) : cursor;
|
|
1097
|
-
if (clampedCursor !== cursor) {
|
|
1098
|
-
setCursor(clampedCursor);
|
|
1099
|
-
}
|
|
1100
1097
|
const reservedLines = 3;
|
|
1101
1098
|
const { scrollOffset, visibleCount } = useScroll(
|
|
1102
1099
|
clampedCursor,
|
|
@@ -1472,7 +1469,8 @@ var ManagerView = ({
|
|
|
1472
1469
|
() => allGroups.flatMap((g) => g.tabs).flatMap((t) => t.panes).filter((p) => p.kind === "claude" && p.claudeStatus).reduce((acc, p) => {
|
|
1473
1470
|
const s = p.claudeStatus;
|
|
1474
1471
|
if (!s) return acc;
|
|
1475
|
-
|
|
1472
|
+
acc[s] = (acc[s] ?? 0) + 1;
|
|
1473
|
+
return acc;
|
|
1476
1474
|
}, {}),
|
|
1477
1475
|
[allGroups]
|
|
1478
1476
|
);
|