From e053f53e344a301f03afe75f5e6e97eebee0b400 Mon Sep 17 00:00:00 2001 From: rhenck <richard.henck@iqb.hu-berlin.de> Date: Fri, 2 Feb 2024 16:13:45 +0100 Subject: [PATCH] Fix wrong import path --- projects/common/models/elements/input-elements/drop-list.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/common/models/elements/input-elements/drop-list.ts b/projects/common/models/elements/input-elements/drop-list.ts index 6bafc8202..21e108403 100644 --- a/projects/common/models/elements/input-elements/drop-list.ts +++ b/projects/common/models/elements/input-elements/drop-list.ts @@ -3,7 +3,7 @@ import { InputElement, InputElementProperties, UIElementType, UIElementValue } from 'common/models/elements/element'; import { ElementComponent } from 'common/directives/element-component.directive'; -import { DropListComponent } from 'common/components/input-elements/drop-list.component'; +import { DropListComponent } from 'common/components/input-elements/drop-list/drop-list.component'; import { VariableInfo, VariableValue } from '@iqb/responses'; import { DragNDropValueObject } from 'common/models/elements/label-interfaces'; import { -- GitLab