RM-158: Validate unique option values for string selects#47
Merged
BenHall-1 merged 6 commits intoTicketsBot-cloud:masterfrom Oct 18, 2025
Merged
RM-158: Validate unique option values for string selects#47BenHall-1 merged 6 commits intoTicketsBot-cloud:masterfrom
BenHall-1 merged 6 commits intoTicketsBot-cloud:masterfrom
Conversation
Adds backend and frontend validation to ensure all string select input options have unique values. The backend now rejects duplicate values with an error, and the frontend highlights duplicates and displays a warning to users.
…button if validation error
Introduces validation to ensure the label is required and no longer than 45 characters, and the description is no longer than 100 characters. Displays appropriate error messages for these validations. Also adjusts some layout and input props for consistency.
Form creation and update endpoints now validate that the title is not empty or whitespace-only and does not exceed 45 characters. The Forms.svelte view disables actions and displays error messages when the title is invalid, improving user feedback and preventing invalid submissions.
BenHall-1
approved these changes
Oct 18, 2025
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.
RM-158
Adds backend and frontend validation to ensure all string select input options have unique values. The backend now rejects duplicate values with an error, and the frontend highlights duplicates and displays a warning to users.