Add title=verified to verified icon

This commit is contained in:
Bofh 2022-12-06 17:17:09 +01:00
parent edf7c6091a
commit 8af0eaced3
1 changed files with 1 additions and 1 deletions

View File

@ -147,7 +147,7 @@ window.view.instance = {
t = t.replaceAll('{value}', html2text(it.fields[j].value));
t = t.replaceAll('{verified}', it.fields[j].verified_at !== undefined ? 'verified' : '');
t = t.replaceAll('{verifiedColumn}', it.fields[j].verified_at !== undefined ?
'<td><i class="fa fa-check fa-fw"></i></td>' : '');
'<td title="verified"><i class="fa fa-check fa-fw"></i></td>' : '');
_fields += t;
}
_fields += '</tbody></table>';