fix: dupe id

This commit is contained in:
Barış Soner Uşaklı
2024-02-26 12:39:22 -05:00
parent 0afd670d1c
commit f4b637908a

View File

@@ -97,9 +97,9 @@ define('forum/account/settings', [
function toggleCustomRoute() { function toggleCustomRoute() {
if ($('[data-property="homePageRoute"]').val() === 'custom') { if ($('[data-property="homePageRoute"]').val() === 'custom') {
$('#homePageCustom').show(); $('#homePageCustomContainer').show();
} else { } else {
$('#homePageCustom').hide(); $('#homePageCustomContainer').hide();
$('[data-property="homePageCustom"]').val(''); $('[data-property="homePageCustom"]').val('');
} }
} }