mirror of
https://github.com/element-hq/element-web
synced 2024-11-27 19:56:47 +03:00
Clarify "No devices" message
This commit is contained in:
parent
49c66d8645
commit
04510da057
1 changed files with 1 additions and 1 deletions
|
@ -569,7 +569,7 @@ module.exports = WithMatrixClient(React.createClass({
|
|||
} else if (devices === null) {
|
||||
devComponents = "Unable to load device list";
|
||||
} else if (devices.length === 0) {
|
||||
devComponents = "No registered devices";
|
||||
devComponents = "No devices with registered encryption keys";
|
||||
} else {
|
||||
devComponents = [];
|
||||
for (var i = 0; i < devices.length; i++) {
|
||||
|
|
Loading…
Reference in a new issue