message_list_view: Use $() to create an empty jQuery object.

This commit is contained in:
Aman Agrawal
2024-01-20 15:59:35 +00:00
committed by Tim Abbott
parent 7463f561f1
commit c436b8011f

View File

@@ -1466,7 +1466,7 @@ export class MessageListView {
if ($row === undefined) {
// For legacy reasons we need to return an empty
// jQuery object here.
return $(undefined);
return $();
}
return $row;