Skip to content

Commit

Permalink
remove loader into Grid.Row on QuizList
Browse files Browse the repository at this point in the history
  • Loading branch information
ykrueng committed Dec 29, 2018
1 parent 6cd3e16 commit 6f588cf
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions testnet/src/components/Quiz/QuizList.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,10 @@ class QuizList extends React.Component {
handleSliderChange={this.handleSliderChange}
/>
</Grid.Row>
{fetchingQuizzes && <Loader active inline>Loading</Loader>
}
<Grid.Row>
{fetchingQuizzes && <Loader active inline>Loading</Loader>
}
</Grid.Row>
{filteredQuizzes.map(quiz => (
<Grid.Column
key={quiz.id}
Expand Down

0 comments on commit 6f588cf

Please sign in to comment.