Skip to content

Commit

Permalink
fix(Loading): remove space in class name
Browse files Browse the repository at this point in the history
  • Loading branch information
bfbiggs authored and pauljeter committed Sep 30, 2019
1 parent 90e7795 commit 54b2fe7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion react/src/lib/Loading/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@ const Loading = props => {
} = props;

return (
<div className={`md-loading ${small ? 'md-loading--small' : ''}`}>
<div className={
`md-loading` +
`${small ? ' md-loading--small' : ''}`
}>
<span className='md-loading__icon'/>
<span className='md-loading__icon'/>
<span className='md-loading__icon'/>
Expand Down
4 changes: 2 additions & 2 deletions react/src/lib/Loading/tests/__snapshots__/index.spec.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ ShallowWrapper {
className="md-loading__icon"
/>,
],
"className": "md-loading ",
"className": "md-loading",
},
"ref": null,
"rendered": Array [
Expand Down Expand Up @@ -88,7 +88,7 @@ ShallowWrapper {
className="md-loading__icon"
/>,
],
"className": "md-loading ",
"className": "md-loading",
},
"ref": null,
"rendered": Array [
Expand Down

0 comments on commit 54b2fe7

Please sign in to comment.