Skip to content

Commit

Permalink
fix: Expand unscheduled sessions criteria (#4177)
Browse files Browse the repository at this point in the history
  • Loading branch information
iamareebjamal authored Mar 4, 2020
1 parent 4b63701 commit d747811
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions app/routes/events/view/scheduler.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,18 @@ export default Route.extend({
{
and: [
{
name : 'starts-at',
op : 'eq',
val : null
},
{
name : 'ends-at',
op : 'eq',
val : null
or: [
{
name : 'starts-at',
op : 'eq',
val : null
},
{
name : 'ends-at',
op : 'eq',
val : null
}
]
},
{
or: [
Expand Down

1 comment on commit d747811

@vercel
Copy link

@vercel vercel bot commented on d747811 Mar 4, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.