Skip to content

Commit b6ad640

Browse files
authored
Merge pull request #848 from bcgov/GRAD2-3021
Grad2 3021 changes
2 parents 320e6f7 + c94ebfe commit b6ad640

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

frontend/src/components/Codes/StudentGradeCodes.vue

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@
1111
showFilter="true"
1212
>
1313
<template v-slot:item.effectiveDate="{ item }">
14-
{{ $filters.formatYYYYMMDate(item.effectiveDate) }}
14+
{{ $filters.formatSimpleDate(item.effectiveDate) }}
1515
</template>
1616
<template v-slot:item.expiryDate="{ item }">
17-
{{ $filters.formatYYYYMMDate(item.expiryDate) }}
17+
{{ $filters.formatSimpleDate(item.expiryDate) }}
1818
</template>
1919
</DisplayTable>
2020
</div>
@@ -25,6 +25,7 @@ import DisplayTable from "@/components/DisplayTable.vue";
2525
import { useSnackbarStore } from "@/store/modules/snackbar";
2626
import { mapState, mapActions } from "pinia";
2727
import { useAppStore } from "@/store/modules/app";
28+
2829
export default {
2930
name: "GradeCodes",
3031
components: {

0 commit comments

Comments
 (0)