Skip to content

Commit

Permalink
Remove commented code
Browse files Browse the repository at this point in the history
  • Loading branch information
patrick11514 committed Oct 5, 2024
1 parent bc2a927 commit 2c254a3
Showing 1 changed file with 0 additions and 33 deletions.
33 changes: 0 additions & 33 deletions frontend/src/Teacher/AllTasks.vue
Original file line number Diff line number Diff line change
Expand Up @@ -194,39 +194,6 @@ const onChangeSubject = () => {
</a>
</template>
</DataTable>

<!--<v-data-table-server
:items-per-page="10"
:headers="headers"
:items="selectedTasks"
:items-length="taskCount"
:loading="false"
item-value="name"
@update:options="loadItems"
></v-data-table-server>-->

<!--<table class="table table-striped table-hover table-sm">
<thead>
<tr>
<th>Name</th>
<th class="text-end"></th>
</tr>
</thead>
<tbody>
<tr v-for="task in selectedTasks" :key="task.id">
<td>
<a :href="`/teacher/task/${task.id}`">
{{ task.title }}
</a>
</td>
<td class="text-end">
<a class="btn btn-secondary btn-sm" :href="`/teacher/task/${task.id}/moss`">
MOSS check
</a>
</td>
</tr>
</tbody>
</table>-->
</template>
</template>

Expand Down

0 comments on commit 2c254a3

Please sign in to comment.