feat(frontend): nieuwe "cancel" knop bij create assignment
This commit is contained in:
parent
1d29adaa31
commit
800f6433d6
10 changed files with 44 additions and 238 deletions
|
@ -66,13 +66,14 @@ function openGroupDetails(group): void {
|
|||
dialog.value = true;
|
||||
}
|
||||
|
||||
const headers = ref([
|
||||
{title: t('group'), align: 'start', key: 'name'},
|
||||
{title: t('progress'), align: 'center', key: 'progress'},
|
||||
{title: t('submission'), align: 'center', key: 'submission'}
|
||||
const headers = computed(() => [
|
||||
{ title: t('group'), align: 'start', key: 'name' },
|
||||
{ title: t('progress'), align: 'center', key: 'progress' },
|
||||
{ title: t('submission'), align: 'center', key: 'submission' }
|
||||
]);
|
||||
|
||||
|
||||
|
||||
const {mutate, isSuccess} = useDeleteAssignmentMutation();
|
||||
|
||||
async function deleteAssignment(num: number, clsId: string): Promise<void> {
|
||||
|
@ -177,7 +178,7 @@ async function deleteAssignment(num: number, clsId: string): Promise<void> {
|
|||
|
||||
<v-dialog v-model="dialog" max-width="50%">
|
||||
<v-card>
|
||||
<v-card-title class="headline">Group Members</v-card-title>
|
||||
<v-card-title class="headline">{{t("members")}}</v-card-title>
|
||||
<v-card-text>
|
||||
<v-list>
|
||||
<v-list-item
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue