copilot fixes

This commit is contained in:
Katie Kroell 2026-04-01 16:24:02 -04:00
parent 10287bc7aa
commit 120c4c4c89
2 changed files with 3 additions and 6 deletions

View file

@ -342,7 +342,7 @@ describe('coverageStatement.vue', () => {
// Assert
expect(result).toBeFalsy();
});
test('returns true when a part in glassParts require recalibration and recalibration has been added to order', () => {
test('returns true when a part in glassParts requires recalibration and recalibration has been added to order', () => {
// Arrange
containsRecalParts.mockReturnValue(true);
const mainInitialState = {

View file

@ -4,7 +4,6 @@
:ref="modalName"
:modalId="modalName"
:footerButtonText="modalCloseButtonText"
:isButtonDisabled="isButtonDisabled"
@footerButtonEvent="footerButtonClick"
:displayCloseButton="false"
:displayCloseLink="true">
@ -82,9 +81,6 @@ export default {
modalCloseButtonText() {
return this.getCmsContent(this.cmsWidgetName, 'FooterText');
},
isButtonDisabled() {
return !this.isAcknowledged;
},
errorMessage() {
if (this.showAcknowledgementError) {
return this.ackError;
@ -142,8 +138,9 @@ export default {
background-color: $green;
color: $white;
font-weight: $font-weight-bold;
&:hover {
&:hover, &:focus {
background-color: $green;
box-shadow: 0 0 0 3px $white, 0 0 0 5.5px $green;
}
}
}