From c3129dbb42c08884e060f9032bdde85f8cf6da02 Mon Sep 17 00:00:00 2001 From: rhenck <richard.henck@iqb.hu-berlin.de> Date: Fri, 22 Oct 2021 12:37:46 +0200 Subject: [PATCH] Fix path names --- .../compound-elements/likert-radio-button-group.component.ts | 2 +- .../element-components/compound-elements/likert.component.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/projects/common/element-components/compound-elements/likert-radio-button-group.component.ts b/projects/common/element-components/compound-elements/likert-radio-button-group.component.ts index c27afa825..7ffa923e8 100644 --- a/projects/common/element-components/compound-elements/likert-radio-button-group.component.ts +++ b/projects/common/element-components/compound-elements/likert-radio-button-group.component.ts @@ -1,7 +1,7 @@ import { Component, Input } from '@angular/core'; import { FormGroup } from '@angular/forms'; import { FormElementComponent } from '../../form-element-component.directive'; -import { LikertElementRow } from '../../models/complex-elements/likert-element-row'; +import { LikertElementRow } from '../../models/compound-elements/likert-element-row'; @Component({ selector: 'app-likert-radio-button-group', diff --git a/projects/common/element-components/compound-elements/likert.component.ts b/projects/common/element-components/compound-elements/likert.component.ts index 0c5aead96..227a07bfd 100644 --- a/projects/common/element-components/compound-elements/likert.component.ts +++ b/projects/common/element-components/compound-elements/likert.component.ts @@ -1,6 +1,6 @@ import { Component } from '@angular/core'; import { FormGroup } from '@angular/forms'; -import { LikertElement } from '../../models/complex-elements/likert-element'; +import { LikertElement } from '../../models/compound-elements/likert-element'; @Component({ selector: 'app-likert', -- GitLab