fix:#26 events or modules without names in lists fixed

This commit is contained in:
Elmar Kresse
2024-02-01 15:50:40 +01:00
parent a1572e741b
commit 7ab18c129a
5 changed files with 21 additions and 4 deletions

View File

@ -81,6 +81,10 @@ function formatWeekday(weekday: string) {
field="eventType"
:header="$t('moduleInformation.type')"
></Column>
<Column
field="notes"
:header="$t('moduleInformation.notes')"
></Column>
<Column
field="week"
:header="$t('moduleInformation.week')"
@ -142,6 +146,12 @@ function formatWeekday(weekday: string) {
</td>
<td>{{ item.rooms }}</td>
</tr>
<tr>
<td class="mr-2">
<b>{{ $t("moduleInformation.notes") }}:</b>
</td>
<td>{{ item.notes }}</td>
</tr>
</table>
</div>
</div>