Skip to content

Commit

Permalink
fix delete dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
Rayman committed Nov 7, 2014
1 parent 9dfae86 commit f288615
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/views/playlists/playlist.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Template.ownerPanel.onError = function () {
Template.ownerPanel.beforeRemove = function () {
return function (collection, id) {
var doc = collection.findOne(id);
if (confirm('Really delete "' + doc.name + '"?')) {
if (confirm('Really delete "' + doc.title + '"?')) {
Router.go('playlists');
this.remove();
}
Expand Down

0 comments on commit f288615

Please sign in to comment.