Skip to content

Commit 7076b5b

Browse files
severinbeauvaisSeverin Beauvais
and
Severin Beauvais
authored
22072 Show previous correspondences + cleanup (#2907)
Co-authored-by: Severin Beauvais <severin.beauvais@gov.bc.ca>
1 parent aa6b3be commit 7076b5b

20 files changed

+1157
-884
lines changed

auth-web/package-lock.json

Lines changed: 31 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

auth-web/package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,13 @@
3333
"lodash.isdate": "^4.0.1",
3434
"mime-types": "^2.1.27",
3535
"moment": "^2.29.4",
36+
"moment-timezone": "^0.5.45",
3637
"pinia": "^2.1.6",
3738
"pinia-class": "^0.0.3",
3839
"sanitize-html": "^2.13.0",
3940
"sbc-common-components": "3.0.12",
4041
"vue": "2.6.14",
42+
"vue-auto-resize": "^1.0.1",
4143
"vue-debounce-decorator": "^1.0.1",
4244
"vue-hotjar": "^1.4.0",
4345
"vue-i18n": "8.28.2",

auth-web/src/components/auth/staff/continuation-application/ContinuationApplicationTable.vue

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,7 @@
1313
<v-data-table
1414
:headers="headers"
1515
:items="reviews"
16-
:footer-props="{
17-
itemsPerPageOptions: paginationOptions
18-
}"
16+
:footer-props="{ itemsPerPageOptions: paginationOptions }"
1917
hide-default-header
2018
fixed-header
2119
:loading="isTableLoading"
@@ -101,12 +99,13 @@
10199
<script lang="ts">
102100
import { defineComponent, reactive } from '@vue/composition-api'
103101
import BusinessServices from '@/services/business.services'
102+
import { ContinuationReviewIF } from '@/models/continuation-review'
104103
105104
export default defineComponent({
106105
name: 'ContinuationApplicationTable',
107106
setup () {
108107
const state = reactive({
109-
reviews: [],
108+
reviews: [] as Array<ContinuationReviewIF>,
110109
headers: [
111110
{ text: 'Date Submitted', value: 'date' },
112111
{ text: 'NR Number', value: 'nrNumber' },

auth-web/src/components/auth/staff/continuation-application/ContinuationApplications.vue

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,10 @@
1818
import { Component, Vue } from 'vue-property-decorator'
1919
import ContinuationApplicationTable from './ContinuationApplicationTable.vue'
2020
21-
@Component({
22-
components: {
23-
ContinuationApplicationTable
24-
}
25-
})
26-
export default class ContinuationApplications extends Vue {
27-
}
21+
@Component({
22+
components: {
23+
ContinuationApplicationTable
24+
}
25+
})
26+
export default class ContinuationApplications extends Vue {}
2827
</script>

auth-web/src/components/auth/staff/continuation-application/ContinuationAuthorizationReviewResult.vue

Lines changed: 0 additions & 243 deletions
This file was deleted.

0 commit comments

Comments
 (0)