add swiper view to show

This commit is contained in:
2023-05-18 11:54:47 +02:00
parent e94766898d
commit 551bed9a77
16 changed files with 162 additions and 22 deletions

View File

@@ -30,10 +30,6 @@ export class ShowService {
map(s =>
s.shows
.sort((a, b) => a.date.toMillis() - b.date.toMillis())
.map(_ => {
console.log(_);
return _;
})
.filter(_ => !_.archived)
.filter(show => show.published || (show.owner === s.user?.id && !publishedOnly))
)