Skip to content

Commit b41a2ea

Browse files
Fix for disabling sort
1 parent ebd292b commit b41a2ea

File tree

2 files changed

+17
-17
lines changed

2 files changed

+17
-17
lines changed

frontend/src/components/graduation/district/upload/GradDistrictUploadDataComponent.vue

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -745,15 +745,15 @@ export default {
745745
},
746746
headers: [
747747
{key: 'alert'},
748-
{title: 'School Name', key: 'schoolName'},
749-
{title: 'DEM File', key: 'demFileName'},
750-
{title: 'Upload Date', key: 'demFileUploadDate'},
751-
{title: 'XAM File', key: 'xamFileName'},
752-
{title: 'Upload Date', key: 'xamFileUploadDate'},
753-
{title: 'CRS File', key: 'crsFileName'},
754-
{title: 'Upload Date', key: 'crsFileUploadDate'},
755-
{title: 'Upload User', key: 'updateUser'},
756-
{title: 'Errors/Warnings', key: 'errorLink'},
748+
{title: 'School Name', key: 'schoolName', sortable: false},
749+
{title: 'DEM File', key: 'demFileName', sortable: false},
750+
{title: 'Upload Date', key: 'demFileUploadDate', sortable: false},
751+
{title: 'XAM File', key: 'xamFileName', sortable: false},
752+
{title: 'Upload Date', key: 'xamFileUploadDate', sortable: false},
753+
{title: 'CRS File', key: 'crsFileName', sortable: false},
754+
{title: 'Upload Date', key: 'crsFileUploadDate', sortable: false},
755+
{title: 'Upload User', key: 'updateUser', sortable: false},
756+
{title: 'Errors/Warnings', key: 'errorLink', sortable: false},
757757
],
758758
activeSchoolsCacheMap: null,
759759
disableScreen: false,

frontend/src/components/graduation/school/upload/GradSchoolUploadDataComponent.vue

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -754,14 +754,14 @@ export default {
754754
},
755755
headers: [
756756
{key: 'alert'},
757-
{title: 'DEM File', key: 'demFileName'},
758-
{title: 'Upload Date', key: 'demFileUploadDate'},
759-
{title: 'XAM File', key: 'xamFileName'},
760-
{title: 'Upload Date', key: 'xamFileUploadDate'},
761-
{title: 'CRS File', key: 'crsFileName'},
762-
{title: 'Upload Date', key: 'crsFileUploadDate'},
763-
{title: 'Upload User', key: 'updateUser'},
764-
{title: 'Errors/Warnings', key: 'errorLink'},
757+
{title: 'DEM File', key: 'demFileName', sortable: false},
758+
{title: 'Upload Date', key: 'demFileUploadDate', sortable: false},
759+
{title: 'XAM File', key: 'xamFileName', sortable: false},
760+
{title: 'Upload Date', key: 'xamFileUploadDate', sortable: false},
761+
{title: 'CRS File', key: 'crsFileName', sortable: false},
762+
{title: 'Upload Date', key: 'crsFileUploadDate', sortable: false},
763+
{title: 'Upload User', key: 'updateUser', sortable: false},
764+
{title: 'Errors/Warnings', key: 'errorLink', sortable: false},
765765
],
766766
schoolsMap: null,
767767
disableScreen: false,

0 commit comments

Comments
 (0)