src/app/shared/dialog/review-too-short/dialog-review-too-short.component.ts
selector | dialog-review-too-short-dialog |
templateUrl | dialog-review-too-short-dialog.html |
content |
content: |
Default value:
Hi, thanks for taking the time to write a review, though are you sure you wrote enough?
Most students typically write over 200 words, and it looks like you wrote less than 100.
Would you please consider going back and adding some more detail? Your classmates would appreciate it!
|
import { Component } from "@angular/core";
@Component({
selector: 'dialog-review-too-short-dialog',
templateUrl: 'dialog-review-too-short-dialog.html',
})
export class DialogReviewTooShort {
content = `
Hi, thanks for taking the time to write a review, though are you sure you wrote enough?
Most students typically write over 200 words, and it looks like you wrote less than 100.
Would you please consider going back and adding some more detail? Your classmates would appreciate it!
`
}