fix(ui): add missing delete buttons for agents and teams#63
Merged
viettranx merged 1 commit intoMar 6, 2026
Merged
Conversation
The list pages had ConfirmDialog for deletion wired up but no UI element to trigger it. Detail pages had no delete option at all. - Add delete button with trash icon to agent and team cards - Wire onDelete callbacks to existing setDeleteTarget state - Add delete button + confirm dialog to agent detail page header - Add delete button + confirm dialog to team detail page header Closes nextlevelbuilder#17
mrgoonie
added a commit
that referenced
this pull request
May 28, 2026
Implements 3 coalescing layers to handle rapid multi-attachment inbounds: - Bus debouncer: delays inbound messages 1s, merges duplicates - Web chat debouncer: buffers client-side inbound frames for batch RPC - Telegram album aggregator: collects album members via AfterFunc+Stop timer Drops media-bypass shortcut (forces 1s media floor). Aggregator enforces: - AfterFunc+Stop timer discipline with ordered drain on stop - 2-tuple (album_id, sender) keying for isolation - Dual DoS caps: max 10 albums per sender, max 100 messages per album - merged_message_ids dedup seeding across all 3 surfaces Closes #63
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
onDeletecallbacks to the existingConfirmDialogstate that was already present but never triggeredContext
The list pages (
AgentsPage,TeamsPage) already haddeleteTargetstate andConfirmDialogcomponents wired up, but no UI element ever calledsetDeleteTarget(). Detail pages had no delete option at all.Backend delete endpoints (
DELETE /v1/agents/{id}andteams.deleteWS method) were already implemented and working.Closes #17
Test plan
onDeleteis not passed (no regressions)