Skip to content

Commit 3da6ef3

Browse files
authored
Merge pull request #10 from FaganSC/master
Merge Bug Fix into Development
2 parents d672766 + 8818aff commit 3da6ef3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/webparts/imageSlider/components/Slide.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export class Slide extends React.Component<ISlideProps, ISlideState> {
1919
public render(): React.ReactElement<ISlideProps> {
2020
const { index, activeIndex } = this.props;
2121
const inlineStyle = {
22-
backgroundImage: `url(${this.props.slide.LinkFilename})`,
22+
backgroundImage: `url('${this.props.slide.LinkFilename}')`,
2323
};
2424
return (
2525
<li

0 commit comments

Comments
 (0)