From f46e8359c7ddf09192190a946958036450032812 Mon Sep 17 00:00:00 2001 From: Rob Pilling Date: Wed, 23 Oct 2024 21:42:48 +0100 Subject: [PATCH] sched interface: display appid of an alarm --- apps/sched/interface.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/sched/interface.html b/apps/sched/interface.html index 73ceff3c1..185e9034f 100644 --- a/apps/sched/interface.html +++ b/apps/sched/interface.html @@ -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 = '*';