We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe7ee5b commit 8f47732Copy full SHA for 8f47732
components/_util/wave.tsx
@@ -58,7 +58,9 @@ export default defineComponent({
58
};
59
const getAttributeName = () => {
60
const { insertExtraNode } = props;
61
- return insertExtraNode ? `${prefixCls.value}-click-animating` : `${prefixCls.value}-click-animating-without-extra-node`;
+ return insertExtraNode
62
+ ? `${prefixCls.value}-click-animating`
63
+ : `${prefixCls.value}-click-animating-without-extra-node`;
64
65
const onClick = (node: HTMLElement, waveColor: string) => {
66
const { insertExtraNode, disabled } = props;
0 commit comments