Skip to content

Commit e69a140

Browse files
authored
Ccfri 4274 closure data lost (#606)
* fixed bug where date removal was not obeying the index key. Also fixed ccfri summary dec to work better while checking errors * remove unused import * add default font family
1 parent b80160c commit e69a140

File tree

8 files changed

+328
-380
lines changed

8 files changed

+328
-380
lines changed

backend/src/components/facility.js

+133-146
Large diffs are not rendered by default.

frontend/public/styles/common.css

+7
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,13 @@ input[type="number"] {
132132
background-color: #e5e4e4;
133133
}
134134

135+
.span-label {
136+
color: grey;
137+
font-style: normal;
138+
font-family: "BCSans", Verdana, Arial, sans-serif;
139+
font-size: 14px;
140+
}
141+
135142
div.text-h4,
136143
h4.text-h4,
137144
p.text-h4,

frontend/src/components/LandingPage.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@
267267
cols="12"
268268
md="6"
269269
>
270-
<v-card class="blueBorder rounded-lg elevation-4" min-height="230">
270+
<v-card class="blueBorder rounded-lg elevation-4 pb-2" min-height="230">
271271
<v-card-text>
272272
<p v-if="facility?.facilityAccountNumber" class="text-h5 text--primary text-center">
273273
Facility ID: {{ facility?.facilityAccountNumber }}

frontend/src/components/SummaryDeclaration.vue

+2
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,7 @@
163163
:facility-id="facility.facilityId"
164164
:change-rec-guid="facility?.changeRequestId"
165165
:program-year-id="summaryModel?.application?.programYearId"
166+
:is-processing="isProcessing"
166167
@is-summary-valid="isFormComplete"
167168
/>
168169
</v-expansion-panel>
@@ -443,6 +444,7 @@
443444
</v-row>
444445
</v-card>
445446
</v-row>
447+
446448
<NavButton
447449
v-if="!printableVersion"
448450
:is-submit-displayed="true"

0 commit comments

Comments
 (0)