Skip to content

Commit

Permalink
Use prefix search for run name at the List of runs
Browse files Browse the repository at this point in the history
Instead of exact match use prefix search at the List of runs page
for filtering runs.
  • Loading branch information
csordasmarton committed Mar 7, 2018
1 parent b998710 commit 74d9304
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion www/scripts/codecheckerviewer/ListOfRuns.js
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ function (declare, dom, ItemFileWriteStore, topic, Dialog, Button,
var runNameFilter = this.get('value');
this.timer = setTimeout(function () {
var runFilter = new CC_OBJECTS.RunFilter();
runFilter.names = [runNameFilter];
runFilter.names = [runNameFilter + '*'];
that.listOfRunsGrid.refreshGrid(runFilter);
}, 500);
}
Expand Down

0 comments on commit 74d9304

Please sign in to comment.