From 8f47732b458aae67ae80a246fcffdfa0cd5dd6d4 Mon Sep 17 00:00:00 2001 From: tangjinzhou <415800467@qq.com> Date: Tue, 15 Mar 2022 15:35:17 +0800 Subject: [PATCH] style: lint code --- components/_util/wave.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/components/_util/wave.tsx b/components/_util/wave.tsx index c70ef41dd..1170e3d13 100644 --- a/components/_util/wave.tsx +++ b/components/_util/wave.tsx @@ -58,7 +58,9 @@ export default defineComponent({ }; const getAttributeName = () => { const { insertExtraNode } = props; - return insertExtraNode ? `${prefixCls.value}-click-animating` : `${prefixCls.value}-click-animating-without-extra-node`; + return insertExtraNode + ? `${prefixCls.value}-click-animating` + : `${prefixCls.value}-click-animating-without-extra-node`; }; const onClick = (node: HTMLElement, waveColor: string) => { const { insertExtraNode, disabled } = props;