Skip to content

Commit

Permalink
Merge pull request #1434 from csordasmarton/fix-ui-run-filter
Browse files Browse the repository at this point in the history
Use prefix search for run name at the List of runs
  • Loading branch information
gyorb authored Mar 8, 2018
2 parents 6e825a0 + 74d9304 commit 12802c6
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 @@ -246,7 +246,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 12802c6

Please sign in to comment.