Skip to content
Snippets Groups Projects
Unverified Commit 2a714cae authored by Paul Kaplan's avatar Paul Kaplan Committed by GitHub
Browse files

Merge pull request #915 from stdio2016/develop

Fix waveform in sound editor in Firefox
parents 686139da e961b92b
No related branches found
No related tags found
No related merge requests found
...@@ -33,7 +33,7 @@ const Waveform = props => { ...@@ -33,7 +33,7 @@ const Waveform = props => {
<g transform={`scale(1, -1) translate(0, -${height / 2})`}> <g transform={`scale(1, -1) translate(0, -${height / 2})`}>
<path <path
className={styles.waveformPath} className={styles.waveformPath}
d={`M0 0${pathComponents.join()}Z`} d={`M0 0${pathComponents.join(' ')}Z`}
strokeLinejoin={'round'} strokeLinejoin={'round'}
strokeWidth={2} strokeWidth={2}
/> />
......
...@@ -99,7 +99,7 @@ exports[`Sound Editor Component matches snapshot 1`] = ` ...@@ -99,7 +99,7 @@ exports[`Sound Editor Component matches snapshot 1`] = `
> >
<path <path
className={undefined} className={undefined}
d="M0 0Q0 0 60 45,Q120 90 180 135,Q240 180 300 225,Q360 270 420 135,Q480 0 480 0,Q480 0 420 -135,Q360 -270 300 -225,Q240 -180 180 -135,Q120 -90 60 -45,Q0 0 0 0Z" d="M0 0Q0 0 60 45 Q120 90 180 135 Q240 180 300 225 Q360 270 420 135 Q480 0 480 0 Q480 0 420 -135 Q360 -270 300 -225 Q240 -180 180 -135 Q120 -90 60 -45 Q0 0 0 0Z"
strokeLinejoin="round" strokeLinejoin="round"
strokeWidth={2} strokeWidth={2}
/> />
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment