Skip to content

Commit

Permalink
22072 Show previous correspondences + cleanup (#2907)
Browse files Browse the repository at this point in the history
Co-authored-by: Severin Beauvais <severin.beauvais@gov.bc.ca>
  • Loading branch information
severinbeauvais and Severin Beauvais authored Jul 18, 2024
1 parent aa6b3be commit 7076b5b
Show file tree
Hide file tree
Showing 20 changed files with 1,157 additions and 884 deletions.
31 changes: 31 additions & 0 deletions auth-web/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions auth-web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,13 @@
"lodash.isdate": "^4.0.1",
"mime-types": "^2.1.27",
"moment": "^2.29.4",
"moment-timezone": "^0.5.45",
"pinia": "^2.1.6",
"pinia-class": "^0.0.3",
"sanitize-html": "^2.13.0",
"sbc-common-components": "3.0.12",
"vue": "2.6.14",
"vue-auto-resize": "^1.0.1",
"vue-debounce-decorator": "^1.0.1",
"vue-hotjar": "^1.4.0",
"vue-i18n": "8.28.2",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,7 @@
<v-data-table
:headers="headers"
:items="reviews"
:footer-props="{
itemsPerPageOptions: paginationOptions
}"
:footer-props="{ itemsPerPageOptions: paginationOptions }"
hide-default-header
fixed-header
:loading="isTableLoading"
Expand Down Expand Up @@ -101,12 +99,13 @@
<script lang="ts">
import { defineComponent, reactive } from '@vue/composition-api'
import BusinessServices from '@/services/business.services'
import { ContinuationReviewIF } from '@/models/continuation-review'
export default defineComponent({
name: 'ContinuationApplicationTable',
setup () {
const state = reactive({
reviews: [],
reviews: [] as Array<ContinuationReviewIF>,
headers: [
{ text: 'Date Submitted', value: 'date' },
{ text: 'NR Number', value: 'nrNumber' },
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,10 @@
import { Component, Vue } from 'vue-property-decorator'
import ContinuationApplicationTable from './ContinuationApplicationTable.vue'
@Component({
components: {
ContinuationApplicationTable
}
})
export default class ContinuationApplications extends Vue {
}
@Component({
components: {
ContinuationApplicationTable
}
})
export default class ContinuationApplications extends Vue {}
</script>

This file was deleted.

Loading

0 comments on commit 7076b5b

Please # to comment.