Update plugins/contours/public/ContoursPanel.jsx

Co-authored-by: Allan Nordhøy <epost@anotheragency.no>
pull/943/head
Piero Toffanin 2020-12-21 15:20:46 -05:00 zatwierdzone przez GitHub
rodzic 73edc2c6dd
commit 2f00194d37
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -233,7 +233,7 @@ export default class ContoursPanel extends React.Component {
(simplify === "custom" && !customSimplify);
let content = "";
if (loading) content = (<span><i className="fa fa-circle-notch fa-spin"></i> {_("Loading...")}</span>);
if (loading) content = (<span><i className="fa fa-circle-notch fa-spin"></i> {_("Loading")}</span>);
else if (permanentError) content = (<div className="alert alert-warning">{permanentError}</div>);
else{
content = (<div>
@ -354,4 +354,4 @@ export default class ContoursPanel extends React.Component {
{content}
</div>);
}
}
}