Sync gate: better position the loading indicator.

master
Tom Hacohen 2017-12-18 18:50:29 +00:00
parent eafdb02d5c
commit 73ab88d3d2
1 changed files with 1 additions and 1 deletions

View File

@ -118,7 +118,7 @@ class SyncGate extends React.PureComponent {
if ((journals === null) ||
(entryArrays.size === 0) ||
!entryArrays.every((x: any) => (x.value !== null))) {
return (<LoadingIndicator />);
return (<LoadingIndicator style={{display: 'block', margin: '40px auto'}} />);
}
const journalMap = syncInfoSelector(this.props);