Skip to content

Commit

Permalink
update references from button to buttonComponent
Browse files Browse the repository at this point in the history
  • Loading branch information
skylermcnamee-hibc committed Jul 18, 2024
1 parent 2cfacd8 commit fa96668
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions jha/src/components/ConsentModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

</div>
<div class="modal-footer justify-content-center">
<Button label="Continue"
<ButtonComponent label="Continue"
@click="closeModal()"
:disabled="!isCaptchaValid || !isTermsAccepted"/>
</div>
Expand All @@ -43,7 +43,7 @@

<script>
import {
Button,
ButtonComponent,
Captcha,
} from "common-lib-vue";
import {
Expand All @@ -55,7 +55,7 @@ import apiService from '@/services/api-service';
export default {
name: "ConsentModal",
components: {
Button,
ButtonComponent,
Captcha,
},
data: () => {
Expand Down
6 changes: 3 additions & 3 deletions jha/src/components/SampleImageTipBox.vue
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<img :src="`/ahdc/images/samples/${sampleImageFileName}`" />
</div>
<div class="modal-footer">
<Button
<ButtonComponent
label='Close'
@click='closeModal()'
color='gold'
Expand All @@ -46,15 +46,15 @@

<script>
import TipBox from './TipBox.vue';
import { ContentModal, Button } from 'common-lib-vue';
import { ContentModal, ButtonComponent } from 'common-lib-vue';
import { SupportDocumentSamples } from '../constants/document-types';
export default {
name: 'SampleImageTipBox',
components: {
ContentModal,
TipBox,
Button,
ButtonComponent,
},
props: {
documentType: {
Expand Down
6 changes: 3 additions & 3 deletions jha/src/views/enrolment/ContactInfoPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@
</div>
<hr class="mt-0"/>
<div v-if="isMailSame">
<Button label='My Mailing Address is Different'
<ButtonComponent label='My Mailing Address is Different'
@click='handleClickDifferentAddress()'
color='gold'
class='different-address'/>
Expand Down Expand Up @@ -320,7 +320,7 @@ import {
import logService from '@/services/log-service';
import {
AddressDoctorInput,
Button,
ButtonComponent,
Checkbox,
ContinueBar,
CountrySelect,
Expand Down Expand Up @@ -394,7 +394,7 @@ export default {
],
components: {
AddressDoctorInput,
Button,
ButtonComponent,
Checkbox,
ContinueBar,
CountrySelect,
Expand Down

0 comments on commit fa96668

Please sign in to comment.