sched interface: display appid of an alarm

pull/3621/head
Rob Pilling 2024-10-23 21:42:48 +01:00
parent c893bc849f
commit f46e8359c7
1 changed files with 1 additions and 1 deletions

View File

@ -173,7 +173,7 @@ function renderAlarm(alarm, exists) {
};
}
}
tdType.textContent = type;
tdType.textContent = type + (alarm.appid ? `\n(${alarm.appid})` : "");
if (!exists) {
const asterisk = document.createElement('sup');
asterisk.textContent = '*';