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
In which the html: { class: ('compact' if request.xhr?) } actually replaced the default class from the config file:
config.default_form_class='ui form'
because if request.xhr? is false, then html[:class] is nil, but it still overrides the default class from the config file.
Alright I thought, maybe it comes from having html[:class] as nil, so I changed my code to only pass the html[:class] bit if request.xhr? is true.
That's kind of annoying, but why not.
But then I realized that when request.xhr? is actually true, I also have my forms go unstyled.
So when request.xhr? is true, I have to specify that I want the compact css class, but also to explicitly specify that I still want to keep the default one.
This doesn't look very DRY to me, because I have to repeat the default form class everywhere I want to add an extra class to the default.