Skip to content

Commit 08bf4cc

Browse files
author
Daniel Haselhan
committed
Rename title to tableTitle
Title was rendering as both input and HTML attribute
1 parent 98a89f8 commit 08bf4cc

File tree

5 files changed

+70
-5
lines changed

5 files changed

+70
-5
lines changed

alcs-frontend/src/app/features/application/review/review.component.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ <h3>Review</h3>
1414
[fileNumber]="fileNumber"
1515
[visibilityFlags]="['C']"
1616
[sortable]="true"
17-
title="Evidentiary Record"
17+
tableTitle="Evidentiary Record"
1818
></app-document>
1919
</section>

alcs-frontend/src/app/features/commissioner/commissioner.component.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
*ngIf="fileNumber"
77
[fileNumber]="fileNumber"
88
[visibilityFlags]="['C']"
9-
title="Evidentiary Record"
9+
tableTitle="Evidentiary Record"
1010
></app-document>
1111
</section>
1212
</div>

alcs-frontend/src/app/shared/application-document/application-document.component.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<div class="table-header">
22
<div>
3-
<h4>{{ title }}</h4>
3+
<h4>{{ tableTitle }}</h4>
44
</div>
55
</div>
66

alcs-frontend/src/app/shared/application-document/application-document.component.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ import {
1010
import { ConfirmationDialogService } from '../confirmation-dialog/confirmation-dialog.service';
1111

1212
@Component({
13-
selector: 'app-document[title][fileNumber][visibilityFlags]',
13+
selector: 'app-document[tableTitle][fileNumber][visibilityFlags]',
1414
templateUrl: './application-document.component.html',
1515
styleUrls: ['./application-document.component.scss'],
1616
})
1717
export class ApplicationDocumentComponent implements OnChanges {
18-
@Input() title = '';
18+
@Input() tableTitle = '';
1919
@Input() fileNumber: string = '';
2020
@Input() visibilityFlags: string[] = [];
2121
@Input() sortable = false;

bcgovpubcode.yml

+65
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
---
2+
data_management_roles:
3+
data_custodian: Avtar Sundher
4+
product_owner: Ansley Charbonneau
5+
product_external_dependencies:
6+
common_components:
7+
- Common-Document-Generation-Service
8+
identity_authorization:
9+
- IDIR
10+
- BceId
11+
- Business-BceId
12+
- BCGov-SSO-Keycloak
13+
notification_standard:
14+
- Common-Hosted-Email-Service
15+
product_information:
16+
api_specifications:
17+
- https://alcs-test-api.apps.silver.devops.gov.bc.ca/docs
18+
business_capabilities_standard:
19+
- Agriculture Land Management - Make Decisions
20+
- >-
21+
Agriculture Land Management - Manage And Access Land Data Including ALR
22+
Boundaries
23+
- Agriculture Land Management - Manage Notifications Of Right Of Way
24+
- Agriculture Land Management - Receive Applications
25+
- Agriculture Land Management - Review Applications
26+
- Agriculture Land Management - Set Conditions
27+
- Agriculture Land Management - Manage Reconsideration's
28+
- Agriculture Land Management - Issue Approvals
29+
ministry:
30+
- Agriculture and Food
31+
product_acronym: ALCS
32+
product_description: Submission, Management, and Tracking of ALC Applications
33+
product_name: Agricultural Land Commission System
34+
product_status: maturing
35+
product_urls:
36+
- https://alcs-test.apps.silver.devops.gov.bc.ca/home
37+
- https://alcs-dev.apps.silver.devops.gov.bc.ca/home
38+
- https://alcs-dev-portal.apps.silver.devops.gov.bc.ca/login
39+
- https://alcs-test-portal.apps.silver.devops.gov.bc.ca/login
40+
- https://alcs.nr.gov.bc.ca/home
41+
program_area: Agricultural Land Commission
42+
product_technology_information:
43+
backend_frameworks:
44+
- name: NestJS
45+
version: '9.3'
46+
backend_languages_version:
47+
- name: TypeScript
48+
version: 4.7.4
49+
ci_cd_tools:
50+
- ArgoCD
51+
- GitHub-Actions
52+
- Helm
53+
data_storage_platforms:
54+
- Postgresql
55+
- Redis
56+
- Object-Storage
57+
frontend_frameworks:
58+
- name: Angular
59+
version: '15'
60+
frontend_languages:
61+
- name: TypeScript
62+
version: '4.9'
63+
hosting_platforms:
64+
- Private-Cloud-Openshift
65+
version: 1

0 commit comments

Comments
 (0)