An error occurred while loading the file. Please try again.
-
Mohammad Alayoub authored2c7ebd77
Forked from an inaccessible project.
import { Component, Input, OnInit } from '@angular/core';
@Component({
selector: 'app-topic-dialog-comment',
templateUrl: './topic-dialog-comment.component.html',
styleUrls: ['./topic-dialog-comment.component.scss']
})
export class TopicDialogCommentComponent implements OnInit {
@Input() question: string;
@Input() maxShowedCharachters: number;
@Input() isCollapsed: boolean = false;
constructor() { }
ngOnInit(): void {
}
}