Skip to content

Commit

Permalink
Merge pull request gitkraken#54 from mfikria/tc-dev-fix-open-file
Browse files Browse the repository at this point in the history
fix cannot open file gitkraken#51
  • Loading branch information
billsedison authored Oct 21, 2018
2 parents 754fe4c + 7c04653 commit 944c6af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ui/search/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -438,7 +438,7 @@ export class CommitSearches extends App<CommitSearchBootstrap> {
catch (error) {
// params = undefined;
}
if (item.details && item.details.length === 1) {
if (item.details && item.details.length >= 1) {
a.onclick = () => {
if (params) {
this._api.postMessage(params);
Expand Down

0 comments on commit 944c6af

Please sign in to comment.