1
0
mirror of https://github.com/coalaura/whiskr.git synced 2025-09-09 09:19:54 +00:00

tags and caching

This commit is contained in:
Laura
2025-08-10 16:38:02 +02:00
parent 58d4e4b64b
commit dcf7f09108
9 changed files with 133 additions and 16 deletions

View File

@@ -448,8 +448,11 @@
const el = document.createElement("option");
el.value = model.id;
el.title = model.description;
el.textContent = model.name;
el.dataset.tags = (model.tags || []).join(",");
$model.appendChild(el);
}