Update mute icon in profile

pull/1/head
yflory 5 years ago
parent 0ee6fcb6bc
commit ac5100b3b2

@ -281,7 +281,7 @@ define([
var isMuted = muted[data.curvePublic];
if (isMuted) {
var unmuteButton = h('button.btn.btn-secondary.cp-app-profile-friend-request', [
h('i.fa.fa-ban'),
h('i.fa.fa-bell'),
Messages.contacts_unmute || 'unmute'
]);
$(unmuteButton).click(function () {
@ -293,7 +293,7 @@ define([
return;
}
var muteButton = h('button.btn.btn-danger.cp-app-profile-friend-request', [
h('i.fa.fa-ban'),
h('i.fa.fa-bell-slash'),
Messages.contacts_mute || 'mute'
]);
$(muteButton).click(function () {

Loading…
Cancel
Save