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:
@@ -222,10 +222,10 @@ function isRegistered(id: string) {
|
||||
<div class="text-secondary text-sm">{{ row.tags.join(' ') }}</div>
|
||||
</template>
|
||||
<template #date="{ row }">
|
||||
{{ new Date(row.date).toLocaleDateString('ru-RU') }} · {{ row.time }}
|
||||
{{ new Date(row.date).toLocaleDateString('ru-RU') }} {{ row.time }}
|
||||
</template>
|
||||
<template #place="{ row }">
|
||||
{{ row.building }} {{ row.room ? `· ауд. ${row.room}` : '' }}
|
||||
{{ row.building }} {{ row.room ? `ауд. ${row.room}` : '' }}
|
||||
</template>
|
||||
<template #seats="{ row }">
|
||||
<span :class="row.freeSeats === 0 ? 'badge badge-gray' : 'badge badge-green'">
|
||||
@@ -251,7 +251,7 @@ function isRegistered(id: string) {
|
||||
<div class="calendar-items">
|
||||
<div v-for="l in items" :key="l.id" class="calendar-item">
|
||||
<div class="calendar-title">{{ l.title }}</div>
|
||||
<div class="calendar-meta">{{ l.time }} · {{ l.building }} {{ l.room ? `· ауд. ${l.room}` : '' }}</div>
|
||||
<div class="calendar-meta">{{ l.time }} {{ l.building }} {{ l.room ? `ауд. ${l.room}` : '' }}</div>
|
||||
<button class="btn-secondary btn-sm">Подробнее</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user