fix calendar strip time display
This commit is contained in:
parent
a274ce90c4
commit
26a5d0631a
1 changed files with 1 additions and 2 deletions
|
|
@ -33,7 +33,7 @@ return [
|
|||
"title" => $event->title()->value(),
|
||||
"place" => $event->place()->value(),
|
||||
"authors" => $event->authors()->value(),
|
||||
"hideSessionsOnHome" => (bool) $event->hideSessionsOnHome()->value(),
|
||||
"hideSessionsOnHome" => $event->hideSessionsOnHome()->value() == 'true' ? true : false,
|
||||
"eventUrl" => $event->url(),
|
||||
"public" => $event->public()->value(),
|
||||
"duration" => $event->duration()->value(),
|
||||
|
|
@ -79,7 +79,6 @@ return [
|
|||
"ticketingUrl" => $ticketingUrl,
|
||||
"bookableStock" => $bookableStock,
|
||||
"totalStock" => (int) $event->totalStock()->value(),
|
||||
"hideSessionsOnHome" => (bool) $event->hideSessionsOnHome()->value()
|
||||
]);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue