1
0

FRONT правки

Правки фронта
This commit is contained in:
2026-01-12 04:03:44 +07:00
parent cd2e291394
commit 61c336b703
5 changed files with 20 additions and 20 deletions

View File

@@ -18,7 +18,7 @@
class="team-card"
>
<div class="card-avatar">
<img :src="user.avatar_url" :alt="user.name">
<img :src="getFullUrl(user.avatar_url)" :alt="user.name">
</div>
<div class="card-info">
<h3 class="card-name">{{ user.name }}</h3>
@@ -46,7 +46,7 @@
import { ref, onMounted, onUpdated } from 'vue'
import Sidebar from '../components/Sidebar.vue'
import Header from '../components/Header.vue'
import { usersApi } from '../api'
import { usersApi, getFullUrl } from '../api'
const users = ref([])
const loading = ref(true)