This is an automated email from the ASF dual-hosted git repository.
rusackas pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git
The following commit(s) were added to refs/heads/master by this push:
new fa168fcc8a5 fix(Label): use correct color for label component (#38707)
fa168fcc8a5 is described below
commit fa168fcc8a576694f53b829186630d20442e6c20
Author: innovark <[email protected]>
AuthorDate: Tue May 12 07:40:31 2026 +0300
fix(Label): use correct color for label component (#38707)
---
.../packages/superset-ui-core/src/components/Label/index.tsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/superset-frontend/packages/superset-ui-core/src/components/Label/index.tsx
b/superset-frontend/packages/superset-ui-core/src/components/Label/index.tsx
index 4d1de1fe125..5e974758af3 100644
--- a/superset-frontend/packages/superset-ui-core/src/components/Label/index.tsx
+++ b/superset-frontend/packages/superset-ui-core/src/components/Label/index.tsx
@@ -38,7 +38,7 @@ export function Label(props: LabelProps) {
} = props;
const baseColor = getColorVariants(theme, type);
- const color = baseColor.active;
+ const color = baseColor.text;
const borderColor = baseColor.border;
const backgroundColor = baseColor.bg;