Skip to content

Commit

Permalink
fix(Explorer): fix the loading spinner on the Explorer
Browse files Browse the repository at this point in the history
  • Loading branch information
grailian committed Nov 28, 2017
1 parent 46e42d2 commit 4ff2f22
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion app/components/Explorer/Explorer.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ const Explorer = ({
);

if (connection.loading) {
content = Loading;
content = <Loading/>;
} else if (connectionError && connectionError.connection.name == connection.selected.name) {
content = (
<div className="explorer-container">
Expand Down
2 changes: 2 additions & 0 deletions app/components/Loading/Loading.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import React from 'react';

const Loading = ({}) => {
return (
<div className="explorer-container">
Expand Down

0 comments on commit 4ff2f22

Please sign in to comment.