Skip to content

Commit d72e7ff

Browse files
committed
Fix naming bug caused by linting
1 parent bae9d7a commit d72e7ff

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

web/src/views/SubmissionPortal/Components/SubmissionList.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import ContactCard from '@/views/SubmissionPortal/Components/ContactCard.vue';
1919
const headers: DataTableHeader[] = [
2020
{
2121
text: 'Study Name',
22-
value: 'metadata_submission.studyForm.studyName',
22+
value: 'study_name',
2323
},
2424
{
2525
text: 'Author',

web/src/views/SubmissionPortal/store/api.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,8 @@ async function listRecords(params: SearchParams) {
8989
params: {
9090
limit: params.limit,
9191
offset: params.offset,
92-
columnSort: params.sortColumn,
93-
sortOrder: params.sortOrder,
92+
column_sort: params.sortColumn,
93+
sort_order: params.sortOrder,
9494
},
9595
});
9696
return resp.data;

0 commit comments

Comments
 (0)