diff --git a/src/app/app.module.ts b/src/app/app.module.ts index 29ec714cc019cae38d19965f2d0f4bf187642d46..5a2c91db9ff31a19e660ff47a8ba05bb6916f95d 100644 --- a/src/app/app.module.ts +++ b/src/app/app.module.ts @@ -72,7 +72,7 @@ import { RoomDeletionComponent } from './components/dialogs/room-delete/room-del import { AnswerStatisticsComponent } from './components/fragments/statistics/statistics.component'; import { RoomModificationComponent } from './components/dialogs/room-edit/room-edit.component'; import { ParticipantChoiceContentComponent } from './components/fragments/participant-choice-content/participant-choice-content.component'; -import { CreatorChoiceContentComponent } from './components/fragments/creator-choice-content/creator-choice-content.component'; +import { CreatorChoiceContentComponent } from './components/fragments/content-choice-creator/content-choice-creator.component'; import { AddContentComponent } from './components/pages/add-content/add-content.component'; import { ParticipantContentCarouselPageComponent diff --git a/src/app/components/fragments/creator-choice-content/creator-choice-content.component.html b/src/app/components/fragments/content-choice-creator/content-choice-creator.component.html similarity index 100% rename from src/app/components/fragments/creator-choice-content/creator-choice-content.component.html rename to src/app/components/fragments/content-choice-creator/content-choice-creator.component.html diff --git a/src/app/components/fragments/creator-choice-content/creator-choice-content.component.scss b/src/app/components/fragments/content-choice-creator/content-choice-creator.component.scss similarity index 100% rename from src/app/components/fragments/creator-choice-content/creator-choice-content.component.scss rename to src/app/components/fragments/content-choice-creator/content-choice-creator.component.scss diff --git a/src/app/components/fragments/creator-choice-content/creator-choice-content.component.spec.ts b/src/app/components/fragments/content-choice-creator/content-choice-creator.component.spec.ts similarity index 88% rename from src/app/components/fragments/creator-choice-content/creator-choice-content.component.spec.ts rename to src/app/components/fragments/content-choice-creator/content-choice-creator.component.spec.ts index 95fff0fceb9d82e8168773fa181741d7ca108cf8..dd2eaed2fff04fe67d141908bff84e2f6ea85930 100644 --- a/src/app/components/fragments/creator-choice-content/creator-choice-content.component.spec.ts +++ b/src/app/components/fragments/content-choice-creator/content-choice-creator.component.spec.ts @@ -1,6 +1,6 @@ import { async, ComponentFixture, TestBed } from '@angular/core/testing'; -import { CreatorChoiceContentComponent } from './creator-choice-content.component'; +import { CreatorChoiceContentComponent } from './content-choice-creator.component'; describe('CreatorChoiceContentComponent', () => { let component: CreatorChoiceContentComponent; diff --git a/src/app/components/fragments/creator-choice-content/creator-choice-content.component.ts b/src/app/components/fragments/content-choice-creator/content-choice-creator.component.ts similarity index 94% rename from src/app/components/fragments/creator-choice-content/creator-choice-content.component.ts rename to src/app/components/fragments/content-choice-creator/content-choice-creator.component.ts index 1bc3ae6ac722564df7c5eba982a8b87583da1b41..bf2c3b0cdeac2974616462f44c0ab49c805855bb 100644 --- a/src/app/components/fragments/creator-choice-content/creator-choice-content.component.ts +++ b/src/app/components/fragments/content-choice-creator/content-choice-creator.component.ts @@ -15,8 +15,8 @@ export class DisplayAnswer { @Component({ selector: 'app-creator-choice-content', - templateUrl: './creator-choice-content.component.html', - styleUrls: ['./creator-choice-content.component.scss'] + templateUrl: './content-choice-creator.component.html', + styleUrls: ['./content-choice-creator.component.scss'] }) export class CreatorChoiceContentComponent implements OnInit {