(container: HTMLElement, workspaceId: string)
| 38 | import { renderApp, type RenderedApp } from "../renderReviewPanel"; |
| 39 | |
| 40 | function getWorkspaceRow(container: HTMLElement, workspaceId: string): HTMLElement | null { |
| 41 | return container.querySelector( |
| 42 | `[data-workspace-id="${workspaceId}"][role="button"]` |
| 43 | ) as HTMLElement | null; |
| 44 | } |
| 45 | |
| 46 | function getQuickArchiveButton(row: HTMLElement): HTMLButtonElement | null { |
| 47 | return row.querySelector('button[aria-label^="Archive workspace "]') as HTMLButtonElement | null; |