feat: Implement admin user and course management, instructor course and quiz management

This commit is contained in:
Missez 2026-02-11 17:03:43 +07:00
parent 8edc3770eb
commit a65ded02f9
7 changed files with 156 additions and 7 deletions

View file

@ -86,7 +86,7 @@
<div class="w-10 h-10 rounded-full overflow-hidden flex items-center justify-center bg-primary-100">
<img
v-if="props.row.avatar_url || props.row.profile?.avatar_url"
:src="props.row.avatar_url || props.row.profile?.avatar_url"
:src="props.row.avatar_url || props.row.profile?.avatar_url || undefined"
class="w-full h-full object-cover"
alt="Avatar"
/>
@ -168,7 +168,7 @@
<div class="w-20 h-20 rounded-full overflow-hidden flex items-center justify-center bg-primary-100 text-3xl">
<img
v-if="selectedUser.avatar_url || selectedUser.profile?.avatar_url"
:src="selectedUser.avatar_url || selectedUser.profile?.avatar_url"
:src="selectedUser.avatar_url || selectedUser.profile?.avatar_url || undefined"
class="w-full h-full object-cover"
alt="Avatar"
/>