Skip to content

Commit

Permalink
- fixed pronoun
Browse files Browse the repository at this point in the history
- fixed input colour override
- fixed a lint warning
  • Loading branch information
Severin Beauvais committed Oct 10, 2024
1 parent 5568535 commit 3262f22
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 14 deletions.
2 changes: 1 addition & 1 deletion src/components/approval-type/ApprovalType.vue
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@
</span>
<v-expand-transition>
<v-form
ref="courtNumRef"
v-if="approvalTypeSelected === ApprovalTypes.VIA_COURT_ORDER"
ref="courtNumRef"
>
<v-text-field
id="court-order-number-input"
Expand Down
23 changes: 10 additions & 13 deletions src/components/certify/Certify.vue
Original file line number Diff line number Diff line change
Expand Up @@ -54,21 +54,16 @@
class="certify-stmt"
:class="{'error-text': invalidSection && !isCertified}"
>
<strong>{{ trimmedCertifiedBy || "[Legal Name]" }}</strong>
certifies that they have relevant knowledge of the
{{ entityDisplay || "association" }} and is authorized to
make this filing.
<strong>{{ trimmedCertifiedBy || "[Legal Name]" }}</strong> certifies that they have relevant
knowledge of the {{ entityDisplay || "association" }} and are authorized to make this filing.
</div>
<div
v-else
class="certify-stmt"
:class="{'error-text': invalidSection && !isCertified}"
>
I,
<strong>{{ trimmedCertifiedBy || "[Legal Name]" }}</strong>,
certify that I have relevant knowledge of the
{{ entityDisplay || "association" }} and I am authorized to
make this filing.
I, <strong>{{ trimmedCertifiedBy || "[Legal Name]" }}</strong>, certify that I have relevant
knowledge of the {{ entityDisplay || "association" }} and I am authorized to make this filing.
</div>
</template>
</v-checkbox>
Expand Down Expand Up @@ -256,9 +251,11 @@ export default class Certify extends Vue {
font-weight: normal;
}
// override v-text-field label and text
:deep(.v-input--is-disabled input),
.v-input--is-disabled textarea {
color: $gray9;
// for accessibility, override the input label and text colour
// this applies to both editable and disabled modes
:deep(.theme--light.v-input) {
label, input {
color: $gray7;
}
}
</style>

0 comments on commit 3262f22

Please sign in to comment.