fix: change delete swap from 'delete' to 'outerHTML' to avoid CSS selector issues
The export IDs contain special characters (colons and slashes from DIDs)
that are invalid in CSS selectors. Changed from:
- hx-target="#export-{{.ID}}" with hx-swap="delete"
To:
- hx-target="closest tr" with hx-swap="outerHTML"
This avoids the querySelectorAll syntax error while still properly
removing the table row when the delete succeeds.
Fixes: SyntaxError: '#export-did:plc:...' is not a valid selector
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>