Skip to content

Commit

Permalink
fix: update maxAssociations to 0 in drag-drop-interaction-mixin.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
Patrick de Klein committed Feb 18, 2025
1 parent 9960121 commit 6f25014
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export const DragDropInteractionMixin = <T extends Constructor<Interaction>>(
dragOnClick: false
};
@property({ type: Number, reflect: true, attribute: 'min-associations' }) minAssociations = 1;
@property({ type: Number, reflect: true, attribute: 'max-associations' }) maxAssociations = 1;
@property({ type: Number, reflect: true, attribute: 'max-associations' }) maxAssociations = 0;

@liveQuery(dragContainersSelector)
handleDraggableContainerChange(dragContainersAdded: HTMLElement[], dragContainersRemoved: HTMLElement[]) {
Expand Down

0 comments on commit 6f25014

Please sign in to comment.