zulip/static
Steve Howell 5e0fc25f74 bug fix: Allow admins to filter users in settings.
It appears c28c3015 caused a regression where we
set `email` to undefined if a user does not have
`delivery_email` set, and this causes filtering
of users to fail for admins doing user settings.

This fixes only one of the issues reported in
issue #13554.

There's probably no easy fix to scrolling taking
long, but I think fixing search will mostly
address that complaint.

The Rust folks seem to agree with me that the
search results are too noisy.  If I search for
"s" I get:

    * names like Steve (good)
    * names like Jesse (noisy)
    * anybody with s in their email (super noisy)

Here is the relevant code:

    return (
        item.full_name.toLowerCase().indexOf(value) >= 0 ||
        email.toLowerCase().indexOf(value) >= 0
    );
2019-12-28 11:22:24 -08:00
..
assets styles: Finish removing manual antialiasing configuration. 2019-08-30 14:51:52 -07:00
audio notifications: Add a setting for changing the notification sound. 2018-12-09 21:25:30 -08:00
generated
html 5xx.html: Build with webpack. 2019-10-28 15:53:15 -07:00
images integrations: Add Gitea integration. 2019-11-18 11:55:24 -08:00
js bug fix: Allow admins to filter users in settings. 2019-12-28 11:22:24 -08:00
shared js: Automatically convert var to let and const in most files. 2019-11-03 12:42:39 -08:00
styles auth: Merge RemoteUserBackend into external_authentication_methods. 2019-12-10 20:16:21 +01:00
templates bots: Render bot owner name in bots settings as link to show owner profile. 2019-12-06 12:00:07 -08:00
third minor: Fix accidental global variable leak in marked. 2019-12-09 16:13:02 -08:00
.gitignore generate-custom-icon-webfont: Replace with webpack webfonts-loader. 2019-07-18 12:00:00 -07:00
favicon.ico