[autofix.ci] apply automated fixes

This commit is contained in:
autofix-ci[bot]
2026-03-24 18:57:02 +00:00
committed by GitHub
parent b1ef5dc2c6
commit b7e30d7ec3
2 changed files with 6 additions and 3 deletions

View File

@@ -38,8 +38,8 @@ export const RemoveContainerDialog = ({ containerId, serverId }: Props) => {
<AlertDialogDescription> <AlertDialogDescription>
This will permanently remove the container{" "} This will permanently remove the container{" "}
<span className="font-semibold">{containerId}</span>. If the <span className="font-semibold">{containerId}</span>. If the
container is running, it will be forcefully stopped and removed. This container is running, it will be forcefully stopped and removed.
action cannot be undone. This action cannot be undone.
</AlertDialogDescription> </AlertDialogDescription>
</AlertDialogHeader> </AlertDialogHeader>
<AlertDialogFooter> <AlertDialogFooter>

View File

@@ -128,7 +128,10 @@ export const columns: ColumnDef<Container>[] = [
> >
Terminal Terminal
</DockerTerminalModal> </DockerTerminalModal>
<RemoveContainerDialog containerId={container.containerId} serverId={container.serverId} /> <RemoveContainerDialog
containerId={container.containerId}
serverId={container.serverId}
/>
</DropdownMenuContent> </DropdownMenuContent>
</DropdownMenu> </DropdownMenu>
); );