Merge pull request #407 from akinwale/blocks-behind-grammar
Simple fix for cases where the status is 1 block behind
This commit is contained in:
commit
72340475e3
1 changed files with 10 additions and 3 deletions
|
@ -52,16 +52,23 @@ export class SplashScreen extends React.PureComponent {
|
||||||
});
|
});
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (status.blockchain_status && status.blockchain_status.blocks_behind > 0) {
|
if (
|
||||||
|
status.blockchain_status &&
|
||||||
|
status.blockchain_status.blocks_behind > 0
|
||||||
|
) {
|
||||||
|
const format = status.blockchain_status.blocks_behind == 1
|
||||||
|
? "%s block behind"
|
||||||
|
: "%s blocks behind";
|
||||||
this.setState({
|
this.setState({
|
||||||
message: __("Blockchain Sync"),
|
message: __("Blockchain Sync"),
|
||||||
details: __("%s blocks behind", status.blockchain_status.blocks_behind),
|
details: __(format, status.blockchain_status.blocks_behind),
|
||||||
isLagging: startupStatus.is_lagging,
|
isLagging: startupStatus.is_lagging,
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
this.setState({
|
this.setState({
|
||||||
message: __("Network Loading"),
|
message: __("Network Loading"),
|
||||||
details: startupStatus.message + (startupStatus.is_lagging ? "" : "..."),
|
details:
|
||||||
|
startupStatus.message + (startupStatus.is_lagging ? "" : "..."),
|
||||||
isLagging: startupStatus.is_lagging,
|
isLagging: startupStatus.is_lagging,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue