feat(profile): prefill date format presets with live examples #127
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "feat/mapps-144-prefilled-date-format"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The date/time format picker rendered each preset as its bare token string (e.g.
MMM-DD-YYYY HH:mm), forcing the user to decode the grammar in their head to know what it produces. Prefill every option with a live example rendered against the current instant, followed by the token string in parens, so an option reads asJun-11-2026 08:40 (MMM-DD-YYYY HH:mm). The same label helper drives the main picker, the custom-format fallback option, and the builder's "Start from a preset" select so all three stay consistent. The option value (the persisted format string) is unchanged, so saving behaves exactly as before.#MAPPS-144