Jobset.pm: Don't show channels in "Jobs" tab.
Now that we have our dedicated "Channels" tab, there is no need anymore to show redundant information. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
parent
8f7486cd9c
commit
ba7402ed6c
|
@ -116,7 +116,7 @@ sub jobs_tab : Chained('jobsetChain') PathPart('jobs-tab') Args(0) {
|
|||
|
||||
foreach my $eval (@evals) {
|
||||
my @builds = $eval->builds->search(
|
||||
{ job => { ilike => $filter } },
|
||||
{ job => { ilike => $filter }, ischannel => 0 },
|
||||
{ columns => ['id', 'job', 'finished', 'buildstatus'] });
|
||||
foreach my $b (@builds) {
|
||||
my $jobName = $b->get_column('job');
|
||||
|
|
Loading…
Reference in a new issue