We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If there is data passed into equals that has toString as a field that's not a function, equals breaks because it tries to call it as a function.
equals
toString
Example data: { field: "status", fieldtype: "jira", fieldId: "status", from: "10000", fromString: "To Do", to: "3", toString: "In Progress" }
{ field: "status", fieldtype: "jira", fieldId: "status", from: "10000", fromString: "To Do", to: "3", toString: "In Progress" }
I know that it's not ideal to have a field named toString, but this is external data that I don't have any control over.
The text was updated successfully, but these errors were encountered:
Actually, it looks like there's a PR that's been open for this since August 2022 - #134
Sorry, something went wrong.
No branches or pull requests
If there is data passed into
equals
that hastoString
as a field that's not a function,equals
breaks because it tries to call it as a function.Example data:
{ field: "status", fieldtype: "jira", fieldId: "status", from: "10000", fromString: "To Do", to: "3", toString: "In Progress" }
I know that it's not ideal to have a field named
toString
, but this is external data that I don't have any control over.The text was updated successfully, but these errors were encountered: