From ce518470c4d2f73479df74df9f453033c474d7d1 Mon Sep 17 00:00:00 2001 From: TomChapmanGov <144270913+TomChapmanGov@users.noreply.github.com> Date: Tue, 31 Oct 2023 21:59:11 -0700 Subject: [PATCH] default text for project description (#1140) * default text for project description * moved default description behaviour to defaultProject --------- Co-authored-by: Tom Chapman --- epictrack-web/src/models/project.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/epictrack-web/src/models/project.ts b/epictrack-web/src/models/project.ts index 01885a25d..4b7f3643f 100644 --- a/epictrack-web/src/models/project.ts +++ b/epictrack-web/src/models/project.ts @@ -30,4 +30,6 @@ export interface Project { export const defaultProject = { is_active: true, + description: + "[Proponent] proposes to develop the [Project name], a [project type] which would be located approximately [distance]km from [known near population centre/known near landmark] within the boundaries of [the QQQ Region]. The proposed project is anticipated to produce approximately [production yield] per year of [product], and would include [describe major project components].", };