remove variable

This commit is contained in:
daria 2025-06-10 10:43:22 +03:00
parent 4aad4836a7
commit b52da4c664
No known key found for this signature in database
GPG Key ID: 3B75240E6B2F2701

View File

@ -101,7 +101,6 @@ define([
avatar = h('span.cp-avatar-image', h('img', { src:'/customize/CryptPad_logo.svg' }));
}
var order = -Math.floor((Util.find(data, ['content', 'msg', 'ctime']) || 0) / 1000);
const tabIndexValue = 0; //data.content.isClickable ? '0': 'undefined';
notif = h('li.cp-notification', {
role: 'menuitem',
tabindex: '0',
@ -110,7 +109,7 @@ define([
}, [
avatar,
h('div.cp-notification-content', {
tabindex: tabIndexValue
tabindex: 0
}, [
h('p', data.content.msg.type + ' - ' +formatData(data))
])