fix(deckgl): remove visibility condition in deckgl stroke color (#37029)

This commit is contained in:
Damian Pendrak
2026-01-12 19:44:19 +01:00
committed by GitHub
parent f4772a9383
commit 2a38ce001e
2 changed files with 1 additions and 3 deletions

View File

@@ -118,10 +118,10 @@ const config: ControlPanelConfig = {
},
},
fillColorPicker,
strokeColorPicker,
deckGLLinearColorSchemeSelect,
breakpointsDefaultColor,
deckGLColorBreakpointsSelect,
strokeColorPicker,
],
[filled, stroked],
[extruded],

View File

@@ -286,8 +286,6 @@ export const strokeColorPicker: CustomControlItem = {
type: 'ColorPickerControl',
default: PRIMARY_COLOR,
renderTrigger: true,
visibility: ({ controls }) =>
isColorSchemeTypeVisible(controls, COLOR_SCHEME_TYPES.fixed_color),
},
};