From ac1bb94343e2d949ad8f38069223095786c11fd9 Mon Sep 17 00:00:00 2001 From: John Date: Fri, 15 Jan 2021 15:15:17 +0800 Subject: [PATCH] fix(Circle): the gradient color is incorrect (#7909) --- src/circle/index.tsx | 6 ++++-- src/circle/test/__snapshots__/demo.spec.js.snap | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/src/circle/index.tsx b/src/circle/index.tsx index 2f3e029a5..af8d24388 100644 --- a/src/circle/index.tsx +++ b/src/circle/index.tsx @@ -96,8 +96,10 @@ export default createComponent({ const renderHover = () => { const PERIMETER = 3140; - const { color, strokeWidth, currentRate, strokeLinecap } = props; + const { strokeWidth, currentRate, strokeLinecap } = props; + let { color } = props; const offset = (PERIMETER * currentRate) / 100; + color = isObject(color) ? `url(#${id})` : color; const style = { stroke: `${color}`, strokeWidth: `${+strokeWidth + 1}px`, @@ -110,7 +112,7 @@ export default createComponent({ d={path.value} style={style} class={bem('hover')} - stroke={isObject(color) ? `url(#${id})` : color} + stroke={color} /> ); }; diff --git a/src/circle/test/__snapshots__/demo.spec.js.snap b/src/circle/test/__snapshots__/demo.spec.js.snap index 57b9c1726..53cc1ccea 100644 --- a/src/circle/test/__snapshots__/demo.spec.js.snap +++ b/src/circle/test/__snapshots__/demo.spec.js.snap @@ -81,7 +81,7 @@ exports[`should render demo and match snapshot 1`] = ` >