From 4549e6838a21eaf993ae015a2abb25c2d96d78b9 Mon Sep 17 00:00:00 2001 From: Manfred Touron Date: Mon, 24 Sep 2018 10:24:00 +0200 Subject: [PATCH] fix: fix broken focus --- cmd_run.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd_run.go b/cmd_run.go index cc68f3d2f..290ad7480 100644 --- a/cmd_run.go +++ b/cmd_run.go @@ -85,7 +85,7 @@ func run(opts *runOptions) error { } } - issues, err := loadIssues(db, opts.Targets) + issues, err := loadIssues(db, nil) if err != nil { return errors.Wrap(err, "failed to load issues") }