Skip to content
Snippets Groups Projects
Unverified Commit df450ad3 authored by Anton Georgiev's avatar Anton Georgiev Committed by GitHub
Browse files

Merge pull request #7558 from capilkey/fix-repeatCount-warning

Fix repeatCount usage in SVG animations
parents 5db7311a c7d0bdcd
No related branches found
No related tags found
No related merge requests found
......@@ -599,7 +599,7 @@ class WhiteboardToolbar extends Component {
to={colorSelected.value}
begin="indefinite"
dur={TRANSITION_DURATION}
repeatCount="0"
repeatCount="1"
fill="freeze"
/>
<animate
......@@ -610,7 +610,7 @@ class WhiteboardToolbar extends Component {
to={thicknessSelected.value}
begin="indefinite"
dur={TRANSITION_DURATION}
repeatCount="0"
repeatCount="1"
fill="freeze"
/>
</circle>
......@@ -692,7 +692,7 @@ class WhiteboardToolbar extends Component {
to={colorSelected.value}
begin="indefinite"
dur={TRANSITION_DURATION}
repeatCount="0"
repeatCount="1"
fill="freeze"
/>
</rect>
......
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