@urbicon-ui/blocks 6.22.0 → 6.23.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -17,7 +17,10 @@
17
17
  <span class={slot('weekNumber')} role="columnheader" aria-label={bt('calendar.weekNumber')}
18
18
  ></span>
19
19
  {/if}
20
- {#each ctx.weekdays as day (day)}
20
+ <!-- Short/narrow weekday names duplicate in many locales (de-DE narrow:
21
+ M, D, M, D, F, S, S), so the key needs the column position to stay
22
+ unique — a bare name key crashes dev-mode client renders. -->
23
+ {#each ctx.weekdays as day, i (`${i}-${day}`)}
21
24
  <span class={slot('weekday')} role="columnheader" aria-label={day}>
22
25
  {day}
23
26
  </span>