Skip to content

Commit

Permalink
update lint
Browse files Browse the repository at this point in the history
  • Loading branch information
kzdev420 committed Dec 18, 2023
1 parent dc93742 commit 965d26b
Show file tree
Hide file tree
Showing 4 changed files with 50 additions and 36 deletions.
72 changes: 40 additions & 32 deletions src/components/dialogs/societies-info-dialog.vue
Original file line number Diff line number Diff line change
@@ -1,42 +1,50 @@
<template>
<v-dialog v-model="showModal" width="45rem" persistent content-class="custom-dialog">
<v-card>
<v-row>
<v-col cols="10">
<span class="copy-small"></span>
</v-col>
<v-col cols="2">
<v-icon
<v-dialog
v-model="showModal"
width="45rem"
persistent
content-class="custom-dialog"
>
<v-card>
<v-row>
<v-col cols="10">
<span class="copy-small" />
</v-col>
<v-col cols="2">
<v-icon
class="float-right"
md
color="primary"
@click="emitClose()"
>
mdi-close
mdi-close
</v-icon>
</v-col>
</v-row>
<v-card-text class="mt-n12">
<v-container fluid>
<v-row no-gutters class="text-center">
<v-col cols="12">
To {{ type }} a Society
</v-col>
<v-col cols="12">
please use the Societies Online website
</v-col>
<v-col cols="12">
<a href="https://www.bcregistry.ca/societies/">https://www.bcregistry.ca/societies/</a>
</v-col>
</v-row>
</v-container>
</v-card-text>
<v-card-actions class="pt-0">
<v-spacer />
</v-card-actions>
</v-card>
</v-dialog>
</template>
</v-col>
</v-row>
<v-card-text class="mt-n12">
<v-container fluid>
<v-row
no-gutters
class="text-center"
>
<v-col cols="12">
To {{ type }} a Society
</v-col>
<v-col cols="12">
please use the Societies Online website
</v-col>
<v-col cols="12">
<a href="https://www.bcregistry.ca/societies/">https://www.bcregistry.ca/societies/</a>
</v-col>
</v-row>
</v-container>
</v-card-text>
<v-card-actions class="pt-0">
<v-spacer />
</v-card-actions>
</v-card>
</v-dialog>
</template>
<script lang="ts">
import { Component, Prop, Vue } from 'vue-property-decorator'
import { Action, Getter } from 'vuex-class'
Expand Down
2 changes: 1 addition & 1 deletion src/components/new-request/business-lookup.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
id="business-lookup"
>
<v-autocomplete
v-model:search-input="searchField"

Check warning on line 8 in src/components/new-request/business-lookup.vue

View workflow job for this annotation

GitHub Actions / linting (20.5.1)

'v-model' directives require no argument
filled
no-filter
:hide-no-data="state != States.NO_RESULTS"
:items="searchResults"
:loading="state === States.SEARCHING"
:name="Math.random()"
:search-input.sync="searchField"
append-icon="mdi-magnify"
autocomplete="chrome-off"
autofocus
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,20 @@

<li v-else-if="isRestoration && isSelectedXproAndRestorable">
To reinstate your business, complete
<a :href="fullReinstatementFormLink" target="_blank">
<a
:href="fullReinstatementFormLink"
target="_blank"
>
this form <v-icon
small
class="ml-1"
color="primary"
>mdi-open-in-new</v-icon>
</a> for a full reinstatement or
<a :href="limitedReinstatementFormLink" target="_blank">
<a
:href="limitedReinstatementFormLink"
target="_blank"
>
this form <v-icon
small
class="ml-1"
Expand Down
2 changes: 1 addition & 1 deletion src/components/new-request/search.vue
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@

<!-- Restoration / Reinstatement flow -->
<template v-else-if="isRestoration">
<BusinessLookupFetch ref="MyBusinessLookup"/>
<BusinessLookupFetch ref="MyBusinessLookup" />
<SocietiesInfo
v-if="isSocietyDisabled && showSocietiesInfo"
:type="'restore'"
Expand Down

0 comments on commit 965d26b

Please sign in to comment.