Skip to content
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

UI: Fix styling for username input when editing a user #21771

2 changes: 1 addition & 1 deletion ui/lib/core/addon/components/form-field-groups.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
/>
{{else}}
{{! OTHERWISE WE'RE EDITING }}
{{#if (or (eq attr.name "name") (attr.options.editDisabled))}}
{{#if (or (eq attr.name "name") (eq attr.name "username") (attr.options.editDisabled))}}
malinac02 marked this conversation as resolved.
Show resolved Hide resolved
<ReadonlyFormField @attr={{attr}} @value={{get @model attr.name}} />
{{else}}
<FormField
Expand Down