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
Fix string split on ':' only split on first (#408)
* Fix string split on ':' only split on first
Say the validation rule `date_format:!Y-m-d H:i:s` was used.
That would parse to the badge containing "Format: !Y-m-d H i s", stripping the required ":"'s.
This fixes that by only splitting on the first ":" and keeping the remaining string as is, including ":".
* remove semi colons
0 commit comments