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
"Found the `class` attribute and the `className` property used in the same HTML node. This would result in unspecified behaviour, and elm-test wouldn't be able to reliably query for classnames. Please only use one of the two."
330
+
331
+
332
+
validationMessage:Validation->String
333
+
validationMessage validation =
334
+
case validation of
335
+
ClassVsClassNameValidation->
336
+
classVsClassNameValidationMessage
337
+
338
+
339
+
validationFromMessage:String->MaybeValidation
340
+
validationFromMessage message =
341
+
if message == classVsClassNameValidationMessage then
342
+
JustClassVsClassNameValidation
343
+
344
+
else
345
+
Nothing
346
+
347
+
320
348
{-| grab things from attributes via a decoder, then anything that isn't filtered on
0 commit comments