fix: get COLORS from Utils now that it has been moved there

This commit is contained in:
Yohan Boniface 2025-01-24 18:23:41 +01:00
parent 8111cf5522
commit d5efe6b8e2

View file

@ -424,7 +424,7 @@ export const Categorized = FeatureGroup.extend({
} else { } else {
this.options.colors = colorbrewer?.Accent[this._classes] this.options.colors = colorbrewer?.Accent[this._classes]
? colorbrewer?.Accent[this._classes] ? colorbrewer?.Accent[this._classes]
: U.COLORS // Fixme: move COLORS to modules/ : Utils.COLORS
} }
}, },