mirror of
https://github.com/element-hq/element-web
synced 2024-11-27 03:36:07 +03:00
fix whitespace on multiupload prompt
This commit is contained in:
parent
967528608f
commit
2e772e2f19
1 changed files with 1 additions and 1 deletions
|
@ -71,7 +71,7 @@ module.exports = React.createClass({displayName: 'UploadBar',
|
|||
|
||||
var others;
|
||||
if (uploads.length > 1) {
|
||||
others = 'and '+(uploads.length - 1) + ' other' + (uploads.length > 2 ? 's' : '');
|
||||
others = ' and ' + (uploads.length - 1) + ' other' + (uploads.length > 2 ? 's' : '');
|
||||
}
|
||||
|
||||
return (
|
||||
|
|
Loading…
Reference in a new issue