Skip to content

Commit

Permalink
license -> licence
Browse files Browse the repository at this point in the history
  • Loading branch information
LocalNewsTV committed Nov 23, 2023
1 parent 20a9ade commit 601b5e4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions app/frontend/src/aquifers/components/View.vue
Original file line number Diff line number Diff line change
Expand Up @@ -307,12 +307,12 @@
</b-row>
</div>
<b-table id="licenses" striped :items="licenceDetails.wells_by_licence">
<template v-slot:cell(license_number)="row">
<template v-slot:cell(licence_number)="row">
<a :href="`https://j200.gov.bc.ca/pub/ams/Default.aspx?PossePresentation=AMSPublic&amp;PosseObjectDef=o_ATIS_DocumentSearch&amp;PosseMenuName=WS_Main&Criteria_LicenceNumber=${row.item.licence_number}`" target="_blank">
{{ row.item.licence_number }}
</a>
</template>
<template v-slot:cell(well_tag_numbers_in_license)="row">
<template v-slot:cell(well_tag_numbers_in_licence)="row">
<ul class="p-0 m-0">
<li v-for="wtn in row.item.well_tag_numbers_in_licence" :key="wtn">
<router-link :to="{ name: 'wells-detail', params: { id: wtn }}">{{ wtn }}</router-link>
Expand Down
2 changes: 1 addition & 1 deletion app/frontend/src/bulk/components/BulkAquiferDocuments.vue
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@
{{row.item.aquiferId}}
</span>
</template>
<template v-slot:cell(documents)="option">
<template v-slot:cell(documents)="row">
<ul>
<li v-for="(file, index) in row.item.documents" :key="index">
{{ fileNameWithoutPrefix(file.name) }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -289,8 +289,8 @@ Licensed under the Apache License, Version 2.0 (the "License");
:fields="['from', 'to']"
show-empty
>
<template v-slot:cell(from)="data">{{data.item.start}} ft</template>
<template v-slot:cell(to)="data" >{{data.item.end}} ft</template>
<template v-slot:cell(from)="data">{{data.item.start}} ft</template>
<template v-slot:cell(to)="data" >{{data.item.end}} ft</template>
</b-table>
</b-col>
</b-row>
Expand Down

0 comments on commit 601b5e4

Please sign in to comment.