0
0
Fork 0

Fix lock icon not being shown when locking account in profile settings (#14190)

This commit is contained in:
ThibG 2020-07-01 13:51:50 +02:00 committed by GitHub
parent 35cedc922c
commit 4babf5b8b5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 11 additions and 5 deletions

View file

@ -207,10 +207,12 @@ function main() {
delegate(document, '#account_locked', 'change', ({ target }) => {
const lock = document.querySelector('.card .display-name i');
if (target.checked) {
lock.style.display = 'inline';
} else {
lock.style.display = 'none';
if (lock) {
if (target.checked) {
delete lock.dataset.hidden;
} else {
lock.dataset.hidden = 'true';
}
}
});