Skip to content

Commit

Permalink
Merge branch 'master' into refactoredTutorial
Browse files Browse the repository at this point in the history
  • Loading branch information
Guria committed Nov 10, 2016
2 parents a9e8244 + bd7231a commit 1909a30
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/demo/src/components/Client/form.js
Expand Up @@ -21,7 +21,7 @@ export default connect(
<div className='media'>
<div className='media-left'>
<figure className='image is-32x32'>
<img src={client.image || '/img/client-mini.png'} alt='user' />
<img src={`/img/${client.image}` || '/img/client-mini.png'} alt='user' />
</figure>
</div>
<div className='media-content'>
Expand Down
2 changes: 1 addition & 1 deletion packages/demo/src/components/Client/index.js
Expand Up @@ -24,7 +24,7 @@ export default connect(
<div className='media'>
<div className='media-left'>
<figure className='image is-32x32'>
<img src={client.image || '/img/client-mini.png'} alt='user' />
<img src={`/img/${client.image}` || '/img/client-mini.png'} alt='user' />
</figure>
</div>
<div className='media-content'>
Expand Down
2 changes: 1 addition & 1 deletion packages/demo/src/modules/clients/index.js
Expand Up @@ -14,7 +14,7 @@ export default {
name: 'Cerebral',
notes: 'Make sense of complex apps.',
ref: 'cerebral',
image: '/img/cerebral-mini.png',
image: 'cerebral-mini.png',
website: 'cerebraljs.com'
},
'calvin': {
Expand Down

0 comments on commit 1909a30

Please sign in to comment.