Skip to content

Commit

Permalink
Merge pull request #435 from bcgov/report-changes-mk
Browse files Browse the repository at this point in the history
Report changes mk
  • Loading branch information
roblo-cgi authored Sep 14, 2023
2 parents 59df3a1 + 7e86c02 commit 6795531
Showing 1 changed file with 5 additions and 9 deletions.
14 changes: 5 additions & 9 deletions frontend/src/components/SubmissionHistory.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
disable-pagination hide-default-footer
:sort-by="['priority', 'submissionDate']"
:sort-desc="[true, true]"
v-if="!processing"
>
<template v-slot:item.facilityNames="{ item }">
</template>
Expand All @@ -48,14 +49,14 @@
</template>

<script>
import { mapState, mapMutations, mapActions } from 'vuex';
import { mapState, mapActions } from 'vuex';
import { PATHS, ApiRoutes } from '@/utils/constants';
import alertMixin from '@/mixins/alertMixin';
import NavButton from './util/NavButton.vue';
export default {
mixins: [alertMixin],
data() {
Expand All @@ -77,10 +78,7 @@
};
},
computed: {
...mapState('app', ['programYearList']),
...mapState('application', ['applicationStatus', 'formattedProgramYear', 'applicationId']),
...mapState('reportChanges', ['changeRequestStore','userProfileChangeRequests']),
...mapState('navBar', ['userProfileList']),
...mapState('application', ['applicationId']),
...mapState('document',['pdfs']),
isReadOnly() {
return false;
Expand Down Expand Up @@ -109,9 +107,7 @@
},
methods: {
...mapActions('reportChanges', ['getChangeRequestList', 'createChangeRequest', 'cancelChangeRequest']),
...mapActions('document',['getPDFs']),
...mapMutations('reportChanges', ['setChangeRequestId', 'setChangeActionId']),
previous() {
this.$router.push(PATHS.ROOT.HOME);
},
Expand Down

0 comments on commit 6795531

Please sign in to comment.