generated from VLADIMIR/template_frontend
fix
This commit is contained in:
parent
f3eb8275da
commit
a895c0f910
@ -19,11 +19,11 @@ onMounted(async () => {
|
||||
{{ capitalizeFirstLetter(formatRussianDate(day.date)) }}
|
||||
<span v-if="getRelativeDayName(day.date) !== ''">({{ getRelativeDayName(day.date) }})</span>
|
||||
<div v-for="performance in day.performances" :key="performance.name" class="performance-block">
|
||||
<div>
|
||||
{{ performance.time_collection }}
|
||||
<div v-if="performance.timeCollection !== '' && performance.timeCollection !== '-'">
|
||||
Сбор: {{ performance.timeCollection }}
|
||||
</div>
|
||||
<div>
|
||||
{{ performance.time_start }}
|
||||
<div v-if="performance.timeStart !== '' && performance.timeStart !== '-'">
|
||||
Время: {{ performance.timeStart }}
|
||||
</div>
|
||||
<div>
|
||||
Место: {{ capitalizeFirstLetter(performance.place) }}
|
||||
|
||||
@ -8,8 +8,8 @@ export type Day = {
|
||||
}
|
||||
|
||||
export type Performance = {
|
||||
time_collection: string
|
||||
time_start: string
|
||||
timeCollection: string
|
||||
timeStart: string
|
||||
place: string
|
||||
name: string
|
||||
numbers: Number[]
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user