fix: ui fixes
🚀 Create and publish a Docker image / Detect changes in backend and frontend (push) Successful in 11s
🚀 Create and publish a Docker image / Build & publish backend image (push) Successful in 1m24s
🚀 Create and publish a Docker image / Build & publish frontend image (push) Failing after 29s
🚀 Create and publish a Docker image / Update stack on Portainer (push) Successful in 9s

This commit is contained in:
2026-05-14 02:02:02 +03:00
parent d29b52f824
commit 5a1ddb82e6
10 changed files with 29 additions and 23 deletions
+2 -2
View File
@@ -17,12 +17,12 @@ const userMetaLine = computed(() => {
const parts: string[] = []
if (user.value.institute) parts.push(user.value.institute)
if (user.value.direction) parts.push(user.value.direction)
return parts.join(' · ')
return parts.join(' ')
})
const userYearLine = computed(() => {
const year = user.value.year
return year === null || year === undefined ? '' : `${year} курс`
return Number.isFinite(year) && year > 0 ? `${year} курс` : ''
})
const interestTags = ref([
{ label: '#ML', active: true },