Skip to content
Snippets Groups Projects
Commit c4f037bd authored by Richard Blechinger's avatar Richard Blechinger
Browse files

Show notice when there is no schedules for show

parent 6de7c109
No related branches found
No related tags found
1 merge request!1Add expandable block for show schedules to ShowManager
<template>
<div :class="{ 'show-schedules': true, 'expandable': isExpandable, 'collapsed': isExpandable && collapsed }" @click="expand">
<div
v-if="schedules.length > 0"
:class="{ 'show-schedules': true, 'expandable': isExpandable, 'collapsed': isExpandable && collapsed }"
@click="expand"
>
<table class="table b-table table-striped border">
<thead>
<tr>
......@@ -27,6 +31,10 @@
click to collapse
</div>
</div>
<div class="border p-4 mb-4" v-else>
There are currently no schedules for this show.
</div>
</template>
<script>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment