Skip to content

Commit

Permalink
Fix stopColor prop in CircleLoader svg (#12513)
Browse files Browse the repository at this point in the history
  • Loading branch information
edmundito authored and suhomud committed May 23, 2022
1 parent 537ff2c commit eae2160
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions airbyte-webapp/src/components/StatusIcon/CircleLoader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ const CircleLoader = ({ title }: Props): JSX.Element => (
gradientUnits="userSpaceOnUse"
gradientTransform="translate(0 0)"
>
<stop id="eDwmAshgIQE3-fill-0" offset="17.9167%" stop-color="#d1d1db" />
<stop id="eDwmAshgIQE3-fill-1" offset="100%" stop-color="rgba(209,209,219,0)" />
<stop id="eDwmAshgIQE3-fill-0" offset="17.9167%" stopColor="#d1d1db" />
<stop id="eDwmAshgIQE3-fill-1" offset="100%" stopColor="rgba(209,209,219,0)" />
</linearGradient>
</defs>
{title && <title>{title}</title>}
Expand Down

0 comments on commit eae2160

Please sign in to comment.