From a5ed32ce4a1f9900b551224d3354701acce2bf27 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mark=20Lis=C2=9B=C3=A9?= Date: Tue, 31 Jul 2018 19:23:19 -0700 Subject: [PATCH 1/2] PRC-547: Text changes. --- src/app/home/home.component.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/home/home.component.html b/src/app/home/home.component.html index a21f9099..b3cc29c5 100644 --- a/src/app/home/home.component.html +++ b/src/app/home/home.component.html @@ -20,7 +20,7 @@

About this Site

This website is used to post Crown Land Application information for public review and comment, as per Section 32(2) of - the Land Act, and to support Government's mandate to be transparent in making decisions related to Crown Land Applications. + the Land Act, and to support Government's mandate to be transparent in making decisions related to Crown Land Applications.

This website has been launched as a pilot for the province's Skeena Region, and will be continuously improved and rolled out provincially over the next year. We are always looking for feedback. To share your thoughts, email us at From 4cf3e50a7de49ebc191cc76ffa84f57bfb94c200 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mark=20Lis=C2=9B=C3=A9?= Date: Tue, 31 Jul 2018 19:27:04 -0700 Subject: [PATCH 2/2] PRC-554: Change decision logic --- .../decisions/decisions-tab-content.component.html | 12 ++++++------ src/app/services/application.service.ts | 4 +++- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/src/app/applications/application-detail/decisions/decisions-tab-content.component.html b/src/app/applications/application-detail/decisions/decisions-tab-content.component.html index 5a295a1b..a0739a46 100644 --- a/src/app/applications/application-detail/decisions/decisions-tab-content.component.html +++ b/src/app/applications/application-detail/decisions/decisions-tab-content.component.html @@ -4,15 +4,15 @@ {{applicationService.getStatus(application)}} -

- No decisions have been made for this application at this time. -
- -
-
+
+
No decisions documents are available at this time. Please check back for updates to this information.
+
+ No decisions have been made for this application at this time. +
+

Description

diff --git a/src/app/services/application.service.ts b/src/app/services/application.service.ts index 94a07abe..56b2dc00 100644 --- a/src/app/services/application.service.ts +++ b/src/app/services/application.service.ts @@ -197,6 +197,8 @@ export class ApplicationService { || s === 'DISALLOWED' || s === 'OFFER ACCEPTED' || s === 'OFFER NOT ACCEPTED' - || s === 'OFFERED'); + || s === 'OFFERED' + || s === 'DISPOSITION IN GOOD STANDING' + ); } }