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
Currently there are long conditionals within land-use-action. We can refactor them to be more manageable. e.g.
{{#if (or (eq landUseAction.name "Zoning Special Permit") (eq landUseAction.name "Zoning Certification") (eq landUseAction.name "Zoning Authorization") (eq landUseAction.name "Zoning Map Amendment") (eq landUseAction.name "Zoning Text Amendment") (eq landUseAction.name "Modification") (eq landUseAction.name "Renewal"))}}
can be instead refactored so that we use a component js array like ["Zoning Special Permit", "Zoning Certification"] along with an {{in-array}} helper
["Zoning Special Permit", "Zoning Certification"]
See https://github.com/NYCPlanning/labs-applicant-portal/pull/489/files#r453734034
The text was updated successfully, but these errors were encountered:
andycochran
No branches or pull requests
Currently there are long conditionals within land-use-action.
We can refactor them to be more manageable. e.g.
can be instead refactored so that we use a component js array like
["Zoning Special Permit", "Zoning Certification"]
along with an {{in-array}} helperSee https://github.com/NYCPlanning/labs-applicant-portal/pull/489/files#r453734034
The text was updated successfully, but these errors were encountered: