Commit 9832a72a authored by Patrik Meijer's avatar Patrik Meijer
Browse files

FIX issue with imageUrl in ProjectSeedCard adding leading /

parent 1a1876c7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -73,7 +73,7 @@ export default class ProjectSeedCards extends Component {
                    <Card>
                        <CardMedia
                            style={this.props.mediaStyle}
                            image={`/${seedInfo.imageUrl}`}
                            image={seedInfo.imageUrl}
                            title={seedInfo.title}
                        />
                        <CardContent style={this.props.contentStyle}>
+1 −1
Original line number Diff line number Diff line
@@ -10,7 +10,7 @@ export default class DemoProjectSeedCards extends Component {
                return {
                    title: title,
                    description: 'In these examples the description is short so content height is low',
                    imageUrl: 'seed.png',
                    imageUrl: '/seed.png',
                    createData: {
                        seed: title,
                        desc: 'Any data passed here will be returned..',