Skip to content

Commit

Permalink
Merge pull request #290 from labmlai/search-imp
Browse files Browse the repository at this point in the history
status
  • Loading branch information
hnipun authored Sep 3, 2024
2 parents afd5f93 + 6c10510 commit 421f632
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/ui/src/utils/search.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export function runsFilter(run: RunListItemModel, searchText: string) {
if (!matchTags)
return false

if (hasRunningTag && run.run_status.status != 'in progress') {
if (hasRunningTag && run.run_status.status != RunStatuses.running) {
return false
}

Expand Down

0 comments on commit 421f632

Please sign in to comment.