web: expand a signup row to show its custom fields and metadata - #3
Open
d4mr wants to merge 1 commit into
Open
Conversation
The signups table only had room for email, status, source and date, so anything collected through custom fields was invisible in the admin. Each row now toggles open (click the row or the chevron) to a details panel: the waitlist's custom fields in schema order with their labels, values submitted under keys no longer in the schema, and the submission metadata (timestamps, source, IP, user agent). Expanded state is keyed by signup id so it survives paging. The actions menu stops propagation so it no longer toggles the row. Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
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
The signups table shows email, status, source and date. Anything a waitlist collects through custom fields never appeared in the admin, so you had to export a CSV to read it.
Each row now expands (click the row or the chevron in the new first column) into a details panel:
Expanded state is keyed by signup id, so it survives paging and refetches. The row actions menu stops propagation so opening it doesn't toggle the row. Skeleton and empty states account for the extra column.
No API change: the list endpoint already returned the full row including
customData.Test plan
bun run typecheckcustomDataexpand correctly, multi-line notes keep their line breaks🤖 Generated with Claude Code