Skip to content

Commit

Permalink
fix focusing command with colon - fix #81 (#82)
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanjudis authored Aug 19, 2016
1 parent e8ae622 commit 46b7ebb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/components/RepoView/Repo.vue
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@
return {
name : key,
command : packageJSON.scripts[ key ],
slug : key.replace( /\s/g, '-' ),
slug : key.replace( /[\s:]/g, '-' ),
detailsVisible : false
};
} )
Expand Down

1 comment on commit 46b7ebb

@mischah
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah. Now I see what the problem is 👍

Please sign in to comment.