{{ setImportantWord }}:
++ {{ setImportantWord }}: +
+
Columns to Show
-
+
The Searches table will display up to 1000 searches conducted within the last 14 days.
diff --git a/ppr-ui/src/components/mhrRegistration/YourHome/AddEditHomeSections.vue b/ppr-ui/src/components/mhrRegistration/YourHome/AddEditHomeSections.vue
index 9967c4b35..da7d116d5 100644
--- a/ppr-ui/src/components/mhrRegistration/YourHome/AddEditHomeSections.vue
+++ b/ppr-ui/src/components/mhrRegistration/YourHome/AddEditHomeSections.vue
@@ -33,6 +33,7 @@
id="serial-number"
v-model="serialNumber"
variant="filled"
+ color="primary"
class="pt-4"
label="Serial Number"
:rules="serialNumberRules"
@@ -49,6 +50,7 @@
id="length-feet"
v-model.number="lengthFeet"
variant="filled"
+ color="primary"
class="numberInput pr-2"
label="Feet"
:rules="lengthFeetRules"
@@ -61,6 +63,7 @@
id="length-inches"
v-model.number="lengthInches"
variant="filled"
+ color="primary"
class="numberInput pl-2"
label="Inches (Optional)"
:rules="isNumber('Inches', 2, 12)"
@@ -80,6 +83,7 @@
id="width-feet"
v-model.number="widthFeet"
variant="filled"
+ color="primary"
class="numberInput pr-2"
label="Feet"
:rules="widthFeetRules"
@@ -92,6 +96,7 @@
id="numberInput width-inches"
v-model.number="widthInches"
variant="filled"
+ color="primary"
class="pl-2"
label="Inches (Optional)"
:rules="(isNumber('Inches', 2, 12))"
diff --git a/ppr-ui/src/components/mhrRegistration/YourHome/HomeCertification.vue b/ppr-ui/src/components/mhrRegistration/YourHome/HomeCertification.vue
index f4642d0e8..4d897c5c1 100644
--- a/ppr-ui/src/components/mhrRegistration/YourHome/HomeCertification.vue
+++ b/ppr-ui/src/components/mhrRegistration/YourHome/HomeCertification.vue
@@ -68,6 +68,7 @@
id="csa-number"
v-model="csaNumber"
variant="filled"
+ color="primary"
class="pt-4 pr-2"
label="CSA Number"
:rules="csaNumberRules"
@@ -81,6 +82,7 @@
id="csa-standard"
v-model="csaStandard"
variant="filled"
+ color="primary"
:items="csaStandardOptions"
clearable
class="pt-4 pr-2"
@@ -111,6 +113,7 @@
id="engineer-name"
v-model="engineerName"
variant="filled"
+ color="primary"
class="pt-4 pr-2"
label="Engineer's Name"
:rules="nameRules"
diff --git a/ppr-ui/src/components/mhrRegistration/YourHome/ManufacturedYearInput.vue b/ppr-ui/src/components/mhrRegistration/YourHome/ManufacturedYearInput.vue
index 26e6902dc..54373dea6 100644
--- a/ppr-ui/src/components/mhrRegistration/YourHome/ManufacturedYearInput.vue
+++ b/ppr-ui/src/components/mhrRegistration/YourHome/ManufacturedYearInput.vue
@@ -17,6 +17,7 @@
ref="yearRef"
v-model="yearOfManufacture"
variant="filled"
+ color="primary"
:rules="manufactureYearRules"
label="Year of Manufacture"
persistentHint
diff --git a/ppr-ui/src/components/mhrRegistration/YourHome/ManufacturedYearSelect.vue b/ppr-ui/src/components/mhrRegistration/YourHome/ManufacturedYearSelect.vue
index 0d838b866..e708123ef 100644
--- a/ppr-ui/src/components/mhrRegistration/YourHome/ManufacturedYearSelect.vue
+++ b/ppr-ui/src/components/mhrRegistration/YourHome/ManufacturedYearSelect.vue
@@ -15,6 +15,7 @@
v-model="yearOfManufacture"
:items="[currentYear + 1, currentYear, currentYear - 1]"
variant="filled"
+ color="primary"
:rules="manufactureYearRules"
label="Year of Manufacture"
data-test-id="manufacture-year-select"
diff --git a/ppr-ui/src/components/mhrRegistration/YourHome/ManufacturerMakeModel.vue b/ppr-ui/src/components/mhrRegistration/YourHome/ManufacturerMakeModel.vue
index e76727c0c..7ec81c99a 100644
--- a/ppr-ui/src/components/mhrRegistration/YourHome/ManufacturerMakeModel.vue
+++ b/ppr-ui/src/components/mhrRegistration/YourHome/ManufacturerMakeModel.vue
@@ -24,6 +24,7 @@
ref="nameRef"
v-model="manufacturerName"
variant="filled"
+ color="primary"
:disabled="isMhrManufacturerRegistration"
:class="{ 'unselectable' : isMhrManufacturerRegistration }"
:rules="manufacturerNameRules"
@@ -58,6 +59,7 @@
ref="makeRef"
v-model="make"
variant="filled"
+ color="primary"
:rules="makeRules"
label="Make"
data-test-id="manufacturer-make"
@@ -79,6 +81,7 @@
ref="modelRef"
v-model="model"
variant="filled"
+ color="primary"
:rules="modelRules"
label="Model"
data-test-id="manufacturer-model"
diff --git a/ppr-ui/src/components/mhrRegistration/YourHome/OtherInformation.vue b/ppr-ui/src/components/mhrRegistration/YourHome/OtherInformation.vue
index a865f3f49..4ed9c8059 100644
--- a/ppr-ui/src/components/mhrRegistration/YourHome/OtherInformation.vue
+++ b/ppr-ui/src/components/mhrRegistration/YourHome/OtherInformation.vue
@@ -21,6 +21,7 @@
id="other-remarks"
v-model.trim="otherRemarks"
variant="filled"
+ color="primary"
:rules="maxLength(140)"
name="name"
counter="140"
diff --git a/ppr-ui/src/components/mhrRegistration/YourHome/RebuiltStatus.vue b/ppr-ui/src/components/mhrRegistration/YourHome/RebuiltStatus.vue
index 251d6aa0e..818302bf6 100644
--- a/ppr-ui/src/components/mhrRegistration/YourHome/RebuiltStatus.vue
+++ b/ppr-ui/src/components/mhrRegistration/YourHome/RebuiltStatus.vue
@@ -26,6 +26,7 @@
id="rebuilt-status-text"
v-model.trim="rebuiltRemarks"
variant="filled"
+ color="primary"
counter="280"
:rules="maxLength(280)"
label="Description of the rebuilt status of the home (Optional)"
diff --git a/ppr-ui/src/components/mhrTransfers/DeathCertificate.vue b/ppr-ui/src/components/mhrTransfers/DeathCertificate.vue
index 28f10167a..f6ad3142a 100644
--- a/ppr-ui/src/components/mhrTransfers/DeathCertificate.vue
+++ b/ppr-ui/src/components/mhrTransfers/DeathCertificate.vue
@@ -26,6 +26,7 @@
ref="deathCertificateNumberRef"
v-model="deathCertificateNumber"
variant="filled"
+ color="primary"
:rules="deathCertificateNumberRules"
label="Death Certificate Registration Number"
data-test-id="death-certificate-number"
diff --git a/ppr-ui/src/components/mhrTransfers/SupportingDocuments.vue b/ppr-ui/src/components/mhrTransfers/SupportingDocuments.vue
index d7829c100..3b64569e9 100644
--- a/ppr-ui/src/components/mhrTransfers/SupportingDocuments.vue
+++ b/ppr-ui/src/components/mhrTransfers/SupportingDocuments.vue
@@ -15,7 +15,7 @@
class="supporting-docs-options"
inline
:disabled="isGlobalEditingMode"
- hideDetails="true"
+ :hideDetails="true"
>
Home Owners
@@ -1118,8 +1118,4 @@ export default defineComponent({
:deep(.theme--light.v-btn.v-btn--disabled) {
opacity: 0.4 !important;
}
-
-:deep(.home-owners-icon) {
- vertical-align: middle;
-}
diff --git a/ppr-ui/src/views/newMhrRegistration/SubmittingParty.vue b/ppr-ui/src/views/newMhrRegistration/SubmittingParty.vue
index d1ddc8901..45cf9ce9f 100644
--- a/ppr-ui/src/views/newMhrRegistration/SubmittingParty.vue
+++ b/ppr-ui/src/views/newMhrRegistration/SubmittingParty.vue
@@ -58,6 +58,7 @@
id="doc-id-num"
v-model="documentId"
variant="filled"
+ color="primary"
maxlength="8"
label="Document ID Number"
:rules="documentIdRules"