Skip to content

Commit

Permalink
Fix tables display of candidates within panel pack (#1550)
Browse files Browse the repository at this point in the history
* add orderBy for panelpack

* add new digital members to auth

* add orderBy for panelpack
  • Loading branch information
tomlovesgithub authored Jan 17, 2022
1 parent 5825ba6 commit 4f1277f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/PanelPacks/PanelPacks.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<template #row="{row}">
<TableCell :title="tableColumns[0].title">
<RouterLink
:to="{ name: `exercise-tasks-${row.type}-view`, params: { panelId: row.id} }"
:to="{ name: `exercise-tasks-${row.type}-view`, params: { panelId: row.id } }"
>
{{ row.name }}
</RouterLink>
Expand Down
1 change: 1 addition & 0 deletions src/views/Exercise/Tasks/PanelsView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -406,6 +406,7 @@ export default {
exerciseId: this.panel.exerciseId,
panelId: this.panelId,
type: this.panel.type,
orderBy: 'candidate.fullName',
...params,
}
);
Expand Down

0 comments on commit 4f1277f

Please sign in to comment.