Hide reject media checkbox when not relevant. (#8426)
This commit is contained in:
committed by
Eugen Rochko
parent
793eea2982
commit
29da56cf75
@ -39,3 +39,10 @@ delegate(document, '.media-spoiler-hide-button', 'click', () => {
|
||||
element.click();
|
||||
});
|
||||
});
|
||||
|
||||
delegate(document, '#domain_block_severity', 'change', ({ target }) => {
|
||||
const rejectMediaDiv = document.querySelector('.input.with_label.domain_block_reject_media');
|
||||
if (rejectMediaDiv) {
|
||||
rejectMediaDiv.style.display = (target.value === 'suspend') ? 'none' : 'block';
|
||||
}
|
||||
});
|
||||
|
Reference in New Issue
Block a user