diff --git a/client/app/components/packages/pas-form/edit.hbs b/client/app/components/packages/pas-form/edit.hbs index a5ef86bb..59a4b452 100644 --- a/client/app/components/packages/pas-form/edit.hbs +++ b/client/app/components/packages/pas-form/edit.hbs @@ -8,6 +8,7 @@ @validators={{array this.validations.SaveablePasFormValidations this.validations.SubmittablePasFormValidations}} as |saveablePasForm| > + {{!-- template-lint-disable no-log --}} {{log 'saveablePackageForm.data' saveablePackageForm.data}}
diff --git a/client/app/components/packages/projects/new.hbs b/client/app/components/packages/projects/new.hbs index 13d3efa8..569081ff 100644 --- a/client/app/components/packages/projects/new.hbs +++ b/client/app/components/packages/projects/new.hbs @@ -1,13 +1,14 @@ - - {{log 'saveablePackageForm.data' saveablePackageForm.data}} + {{!-- template-lint-disable no-log --}} + {{log 'saveableProjectForm.data' saveableProjectForm.data}}
@@ -15,7 +16,7 @@ Project Initiation Form

- 1. Display instructional text at the top of the form: The Project Initiation Form begins the project tracking process and gives NYC Planning the necessary details before the Informational Interest meeting. By submitting this form, you confirm your intent to file a Land Use Application with NYC Planning. + The Project Initiation Form begins the project tracking process and gives NYC Planning the necessary details before the Informational Interest meeting. By submitting this form, you confirm your intent to file a Land Use Application with NYC Planning.

While some projects might still be in the early stages, all required fields (*) on this form must be completed. Once submitted, your project will be available to view in this portal. After reviewing your submission, NYC Planning will contact you with the next steps. @@ -24,8 +25,8 @@

@@ -33,6 +34,6 @@ Great job.
-
+
\ No newline at end of file diff --git a/client/app/components/packages/projects/new.js b/client/app/components/packages/projects/new.js index 4783e2c9..d7c7971e 100644 --- a/client/app/components/packages/projects/new.js +++ b/client/app/components/packages/projects/new.js @@ -1,8 +1,8 @@ import Component from '@glimmer/component'; import { action } from '@ember/object'; import { inject as service } from '@ember/service'; -import { SaveableProjectForm } from '../../../validations/saveable-project-form'; -import { SubmittableProjectForm } from '../../../validations/submittable-project-form'; +import SaveableProjectForm from '../../../validations/saveable-project-form'; +import SubmittableProjectForm from '../../../validations/submittable-project-form'; export default class ProjectsNewFormComponent extends Component { validations = { diff --git a/client/app/routes/projects/new.js b/client/app/routes/projects/new.js index cd8f1547..cc6ba07f 100644 --- a/client/app/routes/projects/new.js +++ b/client/app/routes/projects/new.js @@ -1,7 +1,8 @@ import Route from '@ember/routing/route'; import { inject as service } from '@ember/service'; +import AuthenticatedRouteMixin from "ember-simple-auth/mixins/authenticated-route-mixin"; -export default class ProjectsNewRoute extends Route { +export default class ProjectsNewRoute extends Route.extend(AuthenticatedRouteMixin) { @service store; async model() {