{{if .PronounsAreCustom}}
{{ctx.Locale.Tr "settings.pronouns_custom"}}
diff --git a/web_src/js/features/user-settings.js b/web_src/js/features/user-settings.js
index 111bfc4465..717ef945e1 100644
--- a/web_src/js/features/user-settings.js
+++ b/web_src/js/features/user-settings.js
@@ -54,6 +54,7 @@ export function initUserSettings() {
// If JS is disabled, the page will show the custom input, as the dropdown requires JS to work.
// JS progressively enhances the input by adding a dropdown, but it works regardless.
pronounsCustom.removeAttribute('name');
+ pronounsInput.setAttribute('name', 'pronouns');
pronounsDropdown.style.display = '';
onPronounsDropdownUpdate();