add abbr to [k]

dev
Matthew 2023-07-14 17:42:33 -04:00
parent 96806e4d4b
commit a8c24183a2
Signed by: matthew
SSH Key Fingerprint: SHA256:piIXekA9q1p0ZGi4ogFbNY1embip5Ytbi3v8AZ8UYq4
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@
const row = table.insertRow();
let name = `<strong>${user.username}</strong>`;
row.insertCell().innerHTML = `<img src="${user.avatarURL}" alt="${user.username}" style="width:30px;height:30px;"> ${name} ${info.isManager ? " [k]" : ""}`;
row.insertCell().innerHTML = `<img src="${user.avatarURL}" alt="${user.username}" style="width:30px;height:30px;"> ${name} ${info.isManager ? " <abbr title='Play Caller/Managing Partner'>[k]</abbr>" : ""}`;
let departmentAndTitle = "";
if (info.title && info.dept) {