mirror of
https://github.com/zulip/zulip.git
synced 2026-07-12 21:04:41 +08:00
settings_org: Fix linter error with ==.
Apparently this was fixed in a later commit.
This commit is contained in:
parent
f9681c1f51
commit
7da28600c7
@ -669,7 +669,7 @@ exports.build_page = function () {
|
||||
data.message_content_delete_limit_seconds =
|
||||
exports.msg_delete_limit_dropdown_values[delete_limit_setting_value].seconds;
|
||||
}
|
||||
} else if (subsection == 'other_settings') {
|
||||
} else if (subsection === 'other_settings') {
|
||||
var new_message_retention_days = $("#id_realm_message_retention_days").val();
|
||||
|
||||
if (parseInt(new_message_retention_days, 10).toString() !== new_message_retention_days
|
||||
|
||||
Loading…
Reference in New Issue
Block a user