Skip to content

Commit

Permalink
fix: chevron color
Browse files Browse the repository at this point in the history
  • Loading branch information
songwongtp committed Aug 22, 2023
1 parent 23849ce commit 43663de
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/lib/components/json-schema/form/widgets/SelectWidget.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,11 @@ const SelectWidget = <T, F>(props: WidgetProps<T, F>) => {
chakraStyles={{
control: (provided) => ({
...provided,
_disabled: { color: "text.main" },
_disabled: undefined,
}),
dropdownIndicator: (provided, state) => ({
...provided,
color: state.isDisabled ? "gray.700" : undefined,
}),
option: (provided, state) => ({
...provided,
Expand Down

0 comments on commit 43663de

Please sign in to comment.