-
Notifications
You must be signed in to change notification settings - Fork 881
site: restrict allowed characters in CreateGroupRequest.Name to ^[a-zA-Z0-9][a-zA-Z0-9\-]*
#13354
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Labels
good first issue
Easily solved issues suitable for starters and community contributors
s3
Bugs that confuse, annoy, or are purely cosmetic
site
Area: frontend dashboard
Comments
ping @johnstcn |
^[a-zA-Z0-9][a-zA-Z0-9\-]*
^[a-zA-Z0-9][a-zA-Z0-9\-]*
@dudeitscesar @mtojek this is in the TS frontend, not the backend. |
Hi! @johnstcn! I am a new and eager OSS contributor. I am interested in tackling this as my first contribution! Is this an urgent issue/may I try to work on this? |
@ericji1326 go for it! |
Hi, can I attempt on this? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
good first issue
Easily solved issues suitable for starters and community contributors
s3
Bugs that confuse, annoy, or are purely cosmetic
site
Area: frontend dashboard
Currently when creating a group we do not place any restrictions on the
Name
field in the UI.However, when you then go to edit the group the restriction on the
Name
field blocks any further edits until the name is updated. We should enforce this restriction uniformly.(Note: this only counts for Name, and not DisplayName).
The text was updated successfully, but these errors were encountered: