You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RangeFilterData is getting bound to RangeFilterData Float and then failing when trying to decode for a date.
case ...of "NumericRangeFilter"->(Decode.succeed RangeFilterData|> required "min"(Decode.nullable Decode.float)|> required "max"(Decode.nullable Decode.float))|>Decode.map NumericRangeFilter"DateRangeFilter"->(Decode.succeed RangeFilterData|> required "min"(Decode.nullable dateDecoder)|> required "max"(Decode.nullable dateDecoder))|>Decode.map DateRangeFiltertype alias RangeFilterData data ={ min :Maybe data
, max :Maybe data
}type FilterType=NumericRangeFilter(RangeFilterDataFloat)|DateRangeFilter(RangeFilterDataDate)
The text was updated successfully, but these errors were encountered:
RangeFilterData
is getting bound toRangeFilterData Float
and then failing when trying to decode for a date.The text was updated successfully, but these errors were encountered: