mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-04-27 19:56:57 +02:00
Bug Fix - Switching network filter in room directory is ignored when searching the dir
Search is working well, but it takes time. We add "Searching..." string to improve the UX #1579
This commit is contained in:
@@ -356,8 +356,15 @@ double const kPublicRoomsDirectoryDataExpiration = 10;
|
||||
}
|
||||
else
|
||||
{
|
||||
// Show nothing while loading and in other cases
|
||||
tableViewCell.textLabel.text = @"";
|
||||
if (_searchPattern.length)
|
||||
{
|
||||
tableViewCell.textLabel.text = NSLocalizedStringFromTable(@"search_in_progress", @"Vector", nil);
|
||||
}
|
||||
else
|
||||
{
|
||||
// Show nothing in other cases
|
||||
tableViewCell.textLabel.text = @"";
|
||||
}
|
||||
}
|
||||
|
||||
return tableViewCell;
|
||||
|
||||
Reference in New Issue
Block a user