Skip to content

Commit

Permalink
🐛 Show correct names in initial notification
Browse files Browse the repository at this point in the history
  • Loading branch information
Steel Brain committed Aug 12, 2016
1 parent 7e1c2e4 commit 1ad13ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/view.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export default class View {
this.dependencies = dependencies

const notification = atom.notifications.addInfo(`Installing ${name} dependencies`, {
detail: `Installing ${dependencies.join(', ')}`,
detail: `Installing ${dependencies.map(i => i.name).join(', ')}`,
dismissable: true,
})
const progress = document.createElement('progress')
Expand Down

0 comments on commit 1ad13ea

Please sign in to comment.