This is an automated email from the ASF dual-hosted git repository.
michaelsmolina pushed a commit to branch 5.0
in repository https://gitbox.apache.org/repos/asf/superset.git
The following commit(s) were added to refs/heads/5.0 by this push:
new 692d47c79d fix(antd): Invalid dashed border in tertiary button (#33291)
692d47c79d is described below
commit 692d47c79d41351623c1a0569640390479ac5739
Author: JUST.in DO IT <[email protected]>
AuthorDate: Wed Apr 30 04:17:57 2025 -0700
fix(antd): Invalid dashed border in tertiary button (#33291)
---
superset-frontend/src/components/Button/index.tsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/superset-frontend/src/components/Button/index.tsx
b/superset-frontend/src/components/Button/index.tsx
index c38fbc15ca..aa447e13bc 100644
--- a/superset-frontend/src/components/Button/index.tsx
+++ b/superset-frontend/src/components/Button/index.tsx
@@ -67,7 +67,7 @@ const decideType = (buttonStyle: ButtonStyle) => {
success: 'primary',
secondary: 'default',
default: 'default',
- tertiary: 'dashed',
+ tertiary: 'default',
dashed: 'dashed',
link: 'link',
};