Fix bugs found in full security and stability audit.

Harden artifact paths and fusion uploads, repair pool reconnect and login ID tracking, fix agent/fusion/frontend regressions, and refresh PROBLEMS.md with the full findings list.
This commit is contained in:
drjones
2026-05-29 09:57:22 -07:00
parent e11fb30350
commit f9e26bb1a6
13 changed files with 281 additions and 82 deletions

View File

@@ -9,6 +9,8 @@ interface Props {
onChange: (next: FleetFilterState) => void;
selectedCount: number;
onBulkAction: (action: string) => void;
onSelectAllFiltered?: () => void;
filteredCount?: number;
bulkBusy: boolean;
}
@@ -18,6 +20,8 @@ export default function FleetToolbar({
onChange,
selectedCount,
onBulkAction,
onSelectAllFiltered,
filteredCount,
bulkBusy,
}: Props) {
const tags = collectFleetTags(agents);
@@ -78,6 +82,14 @@ export default function FleetToolbar({
</label>
</div>
{onSelectAllFiltered && (filteredCount ?? 0) > 0 && selectedCount === 0 && (
<div className="fleet-bulk-bar">
<button type="button" className="btn btn-outline btn-sm" onClick={onSelectAllFiltered}>
Select all filtered ({filteredCount})
</button>
</div>
)}
{selectedCount > 0 && (
<div className="fleet-bulk-bar">
<span className="font-tech">{selectedCount} selected</span>