Skip to content

Commit

Permalink
fix: filter out falsy values from points in QtiSelectPointInteraction
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcelh1983 committed Jan 27, 2025
1 parent 84e79ff commit 9b66c69
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export class QtiSelectPointInteraction extends Interaction {
return html` <slot name="prompt"></slot>
<point-container>
${repeat(
this._points,
this._points.filter(point => point),
point => point,
(point, index) => html`
<button
Expand Down

0 comments on commit 9b66c69

Please sign in to comment.