From f198f639cc429b97a7e88d26cb86c539db6b84bb Mon Sep 17 00:00:00 2001
From: jojohoch <joachim.hoch@iqb.hu-berlin.de>
Date: Wed, 9 Nov 2022 10:03:54 +0100
Subject: [PATCH] [editor] Remove unused parameter from
 `generateValidDropLists()`

---
 .../input-groups/drop-list-properties.component.ts            | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/projects/editor/src/app/components/properties-panel/model-properties-tab/input-groups/drop-list-properties.component.ts b/projects/editor/src/app/components/properties-panel/model-properties-tab/input-groups/drop-list-properties.component.ts
index d978c2df7..1d6b048f5 100644
--- a/projects/editor/src/app/components/properties-panel/model-properties-tab/input-groups/drop-list-properties.component.ts
+++ b/projects/editor/src/app/components/properties-panel/model-properties-tab/input-groups/drop-list-properties.component.ts
@@ -6,10 +6,10 @@ import { moveItemInArray } from '@angular/cdk/drag-drop';
 import { MessageService } from 'common/services/message.service';
 import { DragNDropValueObject, TextImageLabel } from 'common/models/elements/element';
 import { CombinedProperties } from 'editor/src/app/components/properties-panel/element-properties-panel.component';
+import { IDService } from 'editor/src/app/services/id.service';
 import { UnitService } from '../../../../services/unit.service';
 import { SelectionService } from '../../../../services/selection.service';
 import { DialogService } from '../../../../services/dialog.service';
-import { IDService } from 'editor/src/app/services/id.service';
 
 @Component({
   selector: 'aspect-drop-list-properties',
@@ -26,7 +26,7 @@ import { IDService } from 'editor/src/app/services/id.service';
 
       <mat-form-field *ngIf="combinedProperties.connectedTo !== null"
                       class="wide-form-field" appearance="fill"
-                      (mousedown)="generateValidDropLists($event)">
+                      (mousedown)="generateValidDropLists()">
         <mat-label>{{'propertiesPanel.connectedDropLists' | translate }}</mat-label>
         <mat-select multiple [ngModel]="combinedProperties.connectedTo"
                     (ngModelChange)="toggleConnectedDropList($event)">
-- 
GitLab