dist files for v1.3.2 built

This commit is contained in:
Kantine Wrapper
2026-02-19 20:45:18 +01:00
parent 08ee2a2d0f
commit 4c55e34bc1
7 changed files with 26 additions and 15 deletions

View File

@@ -1141,7 +1141,9 @@
if (nextWeekData && nextWeekData.days) {
nextWeekData.days.forEach(day => {
day.items.forEach(item => {
if (checkHighlight(item.name) || checkHighlight(item.description)) {
const nameMatches = checkHighlight(item.name);
const descMatches = checkHighlight(item.description);
if (nameMatches.length > 0 || descMatches.length > 0) {
highlightCount++;
}
});