Skip to content

Commit ef202a1

Browse files
committed
fix(runners): complete match query
1 parent e8f4d58 commit ef202a1

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

db/sql/global_runner.go

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,7 @@ func (d *SqlDb) GetAllRunners(activeOnly bool, globalOnly bool, tagFilterMode db
6565
case db.RunnerFilterIgnoreTags:
6666
// No tag filtering applied.
6767
case db.RunnerFilterTagCompleteMatch:
68-
builder = builder.Where(squirrel.Or{
69-
runnerHasTagExpr(*tag),
70-
})
68+
builder = builder.Where(runnerHasTagExpr(*tag))
7169
default:
7270
panic("invalid tag filter mode: " + tagFilterMode)
7371
}

0 commit comments

Comments
 (0)