Skip to content
Snippets Groups Projects
Verified Commit 69e22c6e authored by Lukas Maximilian Kimpel's avatar Lukas Maximilian Kimpel
Browse files

Rename content text participant component

parent 78708c17
Branches
Tags
No related merge requests found
......@@ -77,7 +77,7 @@ import { AddContentComponent } from './components/pages/add-content/add-content.
import {
ParticipantContentCarouselPageComponent
} from './components/pages/participant-content-carousel-page/participant-content-carousel-page.component';
import { ParticipantTextContentComponent } from './components/fragments/participant-text-content/participant-text-content.component';
import { ParticipantTextContentComponent } from './components/fragments/content-text-participant/content-text-participant.component';
import { CreatorTextContentComponent } from './components/fragments/content-text-creator/content-text-creator.component';
import { AuthenticationInterceptor } from './interceptors/authentication.interceptor';
......
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { ParticipantTextContentComponent } from './participant-text-content.component';
import { ParticipantTextContentComponent } from './content-text-participant.component';
describe('ParticipantTextContentComponent', () => {
let component: ParticipantTextContentComponent;
......
......@@ -5,8 +5,8 @@ import { AnswerText } from '../../../models/answer-text';
@Component({
selector: 'app-participant-text-content',
templateUrl: './participant-text-content.component.html',
styleUrls: ['./participant-text-content.component.scss']
templateUrl: './content-text-participant.component.html',
styleUrls: ['./content-text-participant.component.scss']
})
export class ParticipantTextContentComponent implements OnInit {
content: TextContent = new TextContent('1',
......
......@@ -4,7 +4,7 @@
<!--
<mat-tab *ngFor="let content of contents">
<app-content-choice-participant *ngIf="content.format === ContentType.CHOICE"></app-content-choice-participant>
<app-participant-text-content *ngIf="content.format === ContentType.TEXT"></app-participant-text-content>
<app-content-text-participant *ngIf="content.format === ContentType.TEXT"></app-content-text-participant>
</mat-tab>
-->
<mat-tab label="Text">
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment