Skip to content

Commit

Permalink
fix(FEC-10660): loading spinner is not showing (#561)
Browse files Browse the repository at this point in the history
  • Loading branch information
RoyBregman committed Nov 23, 2020
1 parent 4386e29 commit 490e4e9
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/components/loading/loading.js
Original file line number Diff line number Diff line change
Expand Up @@ -107,9 +107,11 @@ class Loading extends Component {
<div className={[style.loadingBackdrop, style.show].join(' ')}>
<div className={style.spinnerContainer}>
<div className={style.spinner}>
{[...Array(8)].map(i => (
<span key={i} />
))}
{Array(8)
.fill(0)
.map((val, i) => (
<span key={i + 1} />
))}
</div>
</div>
</div>
Expand Down

0 comments on commit 490e4e9

Please sign in to comment.