mirror of
https://github.com/element-hq/element-web
synced 2024-11-28 12:28:50 +03:00
EventIndexPanel: Reword the crawler state if no room is being crawled.
This commit is contained in:
parent
8de149704e
commit
4913d579e3
1 changed files with 1 additions and 1 deletions
|
@ -125,7 +125,7 @@ export default class EventIndexPanel extends React.Component {
|
|||
if (!this.state.eventIndexingEnabled) {
|
||||
crawlerState = <div>{_t("Message search for encrypted rooms is disabled.")}</div>;
|
||||
} else if (this.state.currentRoom === null) {
|
||||
crawlerState = <div>{_t("Not currently downloading messages for any room.")}</div>;
|
||||
crawlerState = <div>{_t("Not downloading messages for any room.")}</div>;
|
||||
} else {
|
||||
crawlerState = (
|
||||
<div>{_t(
|
||||
|
|
Loading…
Reference in a new issue