A note under each table option while it is chosen, and the rules page offers the way back to the game it was opened from

Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01Jm2auWk6RP71CjaAb4FMoG
This commit is contained in:
Eric Wagoner
2026-09-23 18:48:57 -04:00
co-authored by Claude Fable 5.1
parent 7aa05536c2
commit de430c3794
4 changed files with 23 additions and 9 deletions
+2 -1
View File
@@ -25,7 +25,8 @@ export interface Outcome {
export interface TableOption {
key: string;
label: string;
choices: { value: string; label: string }[];
/** A choice's note is shown under the selector while it is chosen: the one line a player needs to pick. */
choices: { value: string; label: string; note?: string }[];
/** The value a table gets when the host chooses nothing. */
default: string;
}