We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 06d7033 + d9ed16f commit 90e6d49Copy full SHA for 90e6d49
src/common/components/input/buttons/ButtonBase.tsx
@@ -28,9 +28,13 @@ const ButtonBase = (props: ButtonBaseProps): ReactElement => {
28
title={getFormattedTooltipTitle(tooltipTitle)}
29
placement={tooltipPlacement}
30
>
31
- <span>
+ {props.disabled ? (
32
+ <span>
33
+ <MaterialButton {...materialButtonProps} />
34
+ </span>
35
+ ) : (
36
<MaterialButton {...materialButtonProps} />
- </span>
37
+ )}
38
</Tooltip>
39
) : (
40
0 commit comments