From 83ef49ac8aa0b0ea9024abea31bc9f3d17f372fa Mon Sep 17 00:00:00 2001 From: daria <95225431+dariiing@users.noreply.github.com> Date: Tue, 28 Apr 2026 12:17:37 +0300 Subject: [PATCH] remove title attrs from icons --- www/common/messenger-ui.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/www/common/messenger-ui.js b/www/common/messenger-ui.js index bf093652b..d802ee741 100644 --- a/www/common/messenger-ui.js +++ b/www/common/messenger-ui.js @@ -287,7 +287,7 @@ define([ role: 'button', 'aria-label': Messages.contacts_fetchHistory }); - moreHistory.append(Icons.get('history', {title: Messages.contacts_fetchHistory})); + moreHistory.append(Icons.get('history')); var chan = state.channels[id]; var displayName = UI.getDisplayName(chan.name || chan.displayName); @@ -360,7 +360,7 @@ define([ 'role': 'button', 'aria-label': Messages.contacts_removeHistoryTitle }); - removeHistory.append(Icons.get('remove-history', {title: Messages.contacts_removeHistoryTitle})); + removeHistory.append(Icons.get('remove-history')); $(removeHistory).on('keydown', function (e) { if (e.which === 13 || e.which === 32) {