Skip to content
Snippets Groups Projects
Commit 3bf93a38 authored by Konrad Mohrfeldt's avatar Konrad Mohrfeldt :koala:
Browse files

fix: fix rendering of empty-messages in tables

parent b8659228
No related branches found
No related tags found
No related merge requests found
Pipeline #3487 failed
......@@ -76,8 +76,10 @@
</td>
</tr>
<tr v-if="relevantSchedules.length === 0">
<td colspan="2">
<p>{{ t('showSchedules.noSchedulesAvailable') }}</p>
<td colspan="4">
<p class="tw-text-center tw-py-3 tw-m-0">
{{ t('showSchedules.noSchedulesAvailable') }}
</p>
</td>
</tr>
</tbody>
......
......@@ -39,7 +39,7 @@
<template v-if="!hasTimeslots">
<tr>
<td colspan="6">
<p class="tw-text-center tw-pt-3 tw-m-0">
<p class="tw-text-center tw-p-3 tw-m-0">
{{ t('showTimeslots.noTimeslotsScheduled') }}
</p>
</td>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment