1.5.8
Fix popups
This commit is contained in:
+3
-3
@@ -1348,10 +1348,10 @@ ${isPro && (activeProfile === 'custom' || activeCols['air']) && html`<button cla
|
||||
<span>${localHHMM}</span>
|
||||
${(() => {
|
||||
const rowEvents = getCellTagEvents(selectedDayEvents, r);
|
||||
return rowEvents.map(ev => html`
|
||||
return rowEvents.map((ev, idx) => html`
|
||||
<span key=${ev.id} class="event-cell-tag"
|
||||
onClick=${(e) => handleEventTagClick(rowEvents, e)}
|
||||
onMouseEnter=${(e) => handleEventTagEnter(rowEvents, e)}
|
||||
onClick=${(e) => handleEventTagClick(rowEvents, idx, e)}
|
||||
onMouseEnter=${(e) => handleEventTagEnter(rowEvents, idx, e)}
|
||||
onMouseLeave=${handleEventTagLeave}
|
||||
role="button" tabIndex="0" aria-label=${ev.title}
|
||||
>${ev.emoji}</span>
|
||||
|
||||
Reference in New Issue
Block a user