eslint: Fix unicorn/explicit-length-check. (#32666)

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg
2024-12-11 09:19:46 -08:00
committed by GitHub
parent d446b0d672
commit 77f97762c6
74 changed files with 154 additions and 157 deletions

View File

@@ -111,7 +111,7 @@ export function searching(): boolean {
export function render_empty_user_list_message_if_needed($container: JQuery): void {
const empty_list_message = $container.attr("data-search-results-empty");
if (!empty_list_message || $container.children().length) {
if (!empty_list_message || $container.children().length > 0) {
return;
}