This is an automated email from the ASF dual-hosted git repository.
maximebeauchemin pushed a commit to branch template_less
in repository https://gitbox.apache.org/repos/asf/superset.git
The following commit(s) were added to refs/heads/template_less by this push:
new f217865435 oopsy daisy
f217865435 is described below
commit f2178654355fd9270ec9fdfee4436734c6cae59c
Author: Maxime Beauchemin <[email protected]>
AuthorDate: Thu Mar 27 15:13:27 2025 -0700
oopsy daisy
---
superset-frontend/cypress-base/cypress/e2e/dashboard/actions.test.js | 4 ++--
superset-frontend/packages/superset-ui-core/src/theme/index.tsx | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git
a/superset-frontend/cypress-base/cypress/e2e/dashboard/actions.test.js
b/superset-frontend/cypress-base/cypress/e2e/dashboard/actions.test.js
index 307f3ad47b..7da3cc84ee 100644
--- a/superset-frontend/cypress-base/cypress/e2e/dashboard/actions.test.js
+++ b/superset-frontend/cypress-base/cypress/e2e/dashboard/actions.test.js
@@ -46,7 +46,7 @@ describe('Dashboard actions', () => {
// Verify the color of the filled star (gold)
cy.get('@starIconFilled')
.should('have.css', 'color')
- .and('eq', 'rgb(217, 172, 3)');
+ .and('eq', 'rgb(252, 199, 0)');
// Click on StarFilled (removes from favorites)
cy.get('@starIconFilled').click();
@@ -62,6 +62,6 @@ describe('Dashboard actions', () => {
// Verify the color of the outlined star (gray)
cy.get('@starIconOutlinedAfter')
.should('have.css', 'color')
- .and('eq', 'rgb(133, 133, 133)');
+ .and('eq', 'rgb(178, 178, 178)');
});
});
diff --git a/superset-frontend/packages/superset-ui-core/src/theme/index.tsx
b/superset-frontend/packages/superset-ui-core/src/theme/index.tsx
index 37481b4673..42ff900289 100644
--- a/superset-frontend/packages/superset-ui-core/src/theme/index.tsx
+++ b/superset-frontend/packages/superset-ui-core/src/theme/index.tsx
@@ -52,7 +52,7 @@ export function useTheme() {
const styled = emotionStyled;
// launching in in dark mode for now while iterating
-const themeObject = Theme.fromConfig({ algorithm: 'dark' });
+const themeObject = Theme.fromConfig({});
const { theme } = themeObject;
const supersetTheme = theme;