Fixed unable to delete Avatar, with Meteor 3 compatible avatar and attachments fixes.

Thanks to inDane and xet7 !

Fixes #6160
This commit is contained in:
Lauri Ojansivu 2026-03-05 17:27:33 +02:00
parent 326f9bed84
commit 274f1309c3
3 changed files with 83 additions and 6 deletions

View file

@ -267,10 +267,9 @@ BlazeComponent.extendComponent({
event.stopPropagation();
this.setAvatar('');
},
'click .js-delete-avatar': Popup.afterConfirm('deleteAvatar', function(event) {
'click .js-delete-avatar': Popup.afterConfirm('deleteAvatar', function() {
Avatars.remove(this._id);
Popup.back();
event.stopPropagation();
}),
},
];