Merge remote-tracking branch 'origin/develop' into feature/client_server_separation

This commit is contained in:
Elian Doran 2025-04-19 01:08:18 +03:00
commit 132242bf14
No known key found for this signature in database

View File

@ -186,7 +186,7 @@ export default class CalendarView extends ViewMode {
if (promotedAttributes) { if (promotedAttributes) {
let promotedAttributesHtml = ""; let promotedAttributesHtml = "";
for (const [name, value] of promotedAttributes) { for (const [name, value] of promotedAttributes) {
promotedAttributesHtml = /*html*/`\ promotedAttributesHtml = promotedAttributesHtml + /*html*/`\
<div class="promoted-attribute"> <div class="promoted-attribute">
<span class="promoted-attribute-name">${name}</span>: <span class="promoted-attribute-value">${value}</span> <span class="promoted-attribute-name">${name}</span>: <span class="promoted-attribute-value">${value}</span>
</div>`; </div>`;