Fix initCompLabelEdit
not being called (#29198)
Fix broken `if` from https://github.com/go-gitea/gitea/pull/29195 Signed-off-by: Yarden Shoham <git@yardenshoham.com>
This commit is contained in:
parent
0768842ef5
commit
2d8756a960
|
@ -6,9 +6,7 @@ export function initCommonOrganization() {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
const orgNameInput = document.querySelector('.organization.settings.options #org_name');
|
document.querySelector('.organization.settings.options #org_name')?.addEventListener('input', function () {
|
||||||
if (!orgNameInput) return;
|
|
||||||
orgNameInput.addEventListener('input', function () {
|
|
||||||
const nameChanged = this.value.toLowerCase() !== this.getAttribute('data-org-name').toLowerCase();
|
const nameChanged = this.value.toLowerCase() !== this.getAttribute('data-org-name').toLowerCase();
|
||||||
toggleElem('#org-name-change-prompt', nameChanged);
|
toggleElem('#org-name-change-prompt', nameChanged);
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue
Block a user