Skip to content
This repository was archived by the owner on Jun 24, 2025. It is now read-only.

Commit 4d8b40b

Browse files
committed
fix(calendar): make it once again possible to show more than one diplayedAttributes at a time.
Fixes #1747
1 parent 8211fd3 commit 4d8b40b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/public/app/widgets/view_widgets/calendar_view.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ export default class CalendarView extends ViewMode {
186186
if (promotedAttributes) {
187187
let promotedAttributesHtml = "";
188188
for (const [name, value] of promotedAttributes) {
189-
promotedAttributesHtml = /*html*/`\
189+
promotedAttributesHtml = promotedAttributesHtml + /*html*/`\
190190
<div class="promoted-attribute">
191191
<span class="promoted-attribute-name">${name}</span>: <span class="promoted-attribute-value">${value}</span>
192192
</div>`;

0 commit comments

Comments
 (0)