-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[MDS-6178] CORE Project summary edit mode bugs (#3277)
* sneaky Help Guide button style fixing * disable province with international address * project dates validation- change data type from timestamp to date, use string comparison to ignorethe time in validation methods. Add validation for the date to be in the future * disable add button on project links when there's no selection * wrap text on stepped form: MS & CORE * get rid of overlap between back-top button & save changes button (make more like MS) * on project description tab, when click view description, have it be view mode and go to the first tab
- Loading branch information
Showing
14 changed files
with
125 additions
and
64 deletions.
There are no files selected for viewing
15 changes: 15 additions & 0 deletions
15
migrations/sql/V2024.11.22.10.31__change_project_summary_dates_to_date.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
ALTER TABLE project_summary | ||
ALTER COLUMN expected_draft_irt_submission_date TYPE date | ||
USING expected_draft_irt_submission_date::date; | ||
|
||
ALTER TABLE project_summary | ||
ALTER COLUMN expected_permit_application_date TYPE date | ||
USING expected_permit_application_date::date; | ||
|
||
ALTER TABLE project_summary | ||
ALTER COLUMN expected_permit_receipt_date TYPE date | ||
USING expected_permit_receipt_date::date; | ||
|
||
ALTER TABLE project_summary | ||
ALTER COLUMN expected_project_start_date TYPE date | ||
USING expected_project_start_date::date; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters