change /!\ to Warning for accessibility (plus weird escaping?)

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
Michael Telatynski 2017-06-11 13:45:37 +01:00
parent 93f148fca3
commit 6592526109
3 changed files with 3 additions and 3 deletions

View file

@ -77,7 +77,7 @@ export default React.createClass({
render: function() {
let image;
if (this.state.done) {
image = <img className="mx_MatrixToolbar_warning" src="img/warning.svg" width="24" height="23" alt="/!\"/>;
image = <img className="mx_MatrixToolbar_warning" src="img/warning.svg" width="24" height="23" alt="Warning"/>;
} else {
image = <img className="mx_MatrixToolbar_warning" src="'img/spinner.gif'" width="24" height="23" alt={this.state.message}/>;
}