fix(logs/ui): linting errors (#1152)

pull/10616/head
Delmer 2018-10-22 16:29:10 -04:00 committed by GitHub
parent c1bc4dc84a
commit 1ef3ec7a76
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 5 deletions

View File

@ -1,6 +1,11 @@
import React, {PureComponent} from 'react'
import {EmptyState, ComponentSpacer,Alignment ComponentSize} from 'src/clockface'
import {
EmptyState,
ComponentSpacer,
Alignment,
ComponentSize,
} from 'src/clockface'
import {SearchStatus} from 'src/types/logs'
import {formatTime} from 'src/logs/utils'
@ -18,12 +23,12 @@ class LoadingStatus extends PureComponent<Props> {
<EmptyState size={ComponentSize.Large}>
{this.loadingSpinner}
<h4>
<ComponentSpacer align={Alignment.Center}>
<>{this.loadingMessage}</>
<ComponentSpacer align={Alignment.Center}>
<>{this.loadingMessage}</>
</ComponentSpacer>
<ComponentSpacer align={Alignment.Center}>
<>{this.description}</>
</ComponentSpacer>
<>{this.description}</>
</ComponentSpacer>
</h4>
</EmptyState>
</div>