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
There's an inconsistency in the rule name parsing between extend method and parseItemRules. extend calls this.titleCase without the delimiter, so multiword rule names don't match the pattern expected by the rest of the code, e.g:
A rule called exists_in_data is saved as Exists_in_data (without delimiter) but the script expects ExistsInData (with delimiter).
I've fixed it on my end by overriding the extend method with one that calls titleCase using the delimiter:
There's an inconsistency in the rule name parsing between
extend
method andparseItemRules
.extend
callsthis.titleCase
without the delimiter, so multiword rule names don't match the pattern expected by the rest of the code, e.g:A rule called
exists_in_data
is saved asExists_in_data
(without delimiter) but the script expectsExistsInData
(with delimiter).I've fixed it on my end by overriding the
extend
method with one that calls titleCase using the delimiter:Happy to do a pull request.
The text was updated successfully, but these errors were encountered: