Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/apache/superset into geid…
Browse files Browse the repository at this point in the history
…o/fix/color-consistency-race-conditions
  • Loading branch information
geido committed Nov 7, 2024
2 parents 0ab8dbe + de8282c commit 6421f4b
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 9 deletions.
17 changes: 9 additions & 8 deletions superset-frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions superset-frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,7 @@
"json-bigint": "^1.0.0",
"json-stringify-pretty-compact": "^2.0.0",
"lodash": "^4.17.21",
"luxon": "^3.5.0",
"mapbox-gl": "^2.10.0",
"markdown-to-jsx": "^7.4.7",
"match-sorter": "^6.3.4",
Expand Down
2 changes: 1 addition & 1 deletion superset-frontend/src/dashboard/actions/dashboardState.js
Original file line number Diff line number Diff line change
Expand Up @@ -704,7 +704,7 @@ export const updateDashboardLabelsColor = () => async (dispatch, getState) => {
const defaultScheme = categoricalSchemes.defaultKey;
const fallbackScheme = defaultScheme?.toString() || 'supersetColors';
const colorSchemeDomain = metadata?.color_scheme_domain || [];
const sharedLabels = metadata?.shared_label_colors;
const sharedLabels = metadata?.shared_label_colors || [];
let requiresUpdate = false;

try {
Expand Down

0 comments on commit 6421f4b

Please sign in to comment.