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
🚀 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:
@@ -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 },
|
||||
|
||||
Reference in New Issue
Block a user