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
TextAreaElementConfig should have a HasSetValue instance like this:
instance HasSetValue (TextAreaElementConfig er t m) where
type SetValue (TextAreaElementConfig er t m) = Maybe (Event t T.Text)
setValue f conf = fmap
(\sv -> conf { _textAreaElementConfig_setValue = sv }) -- set
. f $ _textAreaElementConfig_setValue conf -- get
In general it looks like there are a bunch of Has* instances missing from the Reflex.Dom.Builder.Class module, but maybe I'm just not looking in the right place for them?
The text was updated successfully, but these errors were encountered:
TextAreaElementConfig
should have aHasSetValue
instance like this:In general it looks like there are a bunch of
Has*
instances missing from theReflex.Dom.Builder.Class
module, but maybe I'm just not looking in the right place for them?The text was updated successfully, but these errors were encountered: