Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
:reset="resetFlag"
:disable-select="!isCollectionActive"
@reload="reload"
@editSelectedRow="editStudent"

Check warning on line 59 in frontend/src/components/sdcCollection/sdcDistrictCollection/stepThreeVerifyData/DetailComponent.vue

View workflow job for this annotation

GitHub Actions / test

v-on event '@editSelectedRow' must be hyphenated

Check warning on line 59 in frontend/src/components/sdcCollection/sdcDistrictCollection/stepThreeVerifyData/DetailComponent.vue

View workflow job for this annotation

GitHub Actions / test

v-on event '@editSelectedRow' must be hyphenated
@selections="selectedStudents = $event"
/>
</v-col>
Expand Down Expand Up @@ -127,7 +127,7 @@
<script>
import alertMixin from '../../../../mixins/alertMixin';
import CustomTable from '../../../common/CustomTable.vue';
import {downloadStudentOnlyReportURL,downloadStudentErrorsReportURL} from '../../../utils/common';
import {downloadStudentOnlyReportURL,downloadStudentErrorsReportURL} from '../../../../utils/common';
import ApiService from '../../../../common/apiService';
import {ApiRoutes} from '../../../../utils/constants';
import {cloneDeep, isEmpty, omitBy} from 'lodash';
Expand Down
Loading