Skip to content

Commit bb049a5

Browse files
committed
Updated for studentText -> text property change to CRaterIdea.ts
1 parent aa1da2b commit bb049a5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/assets/wise5/components/common/cRater/edit-crater-idea-descriptions/edit-crater-idea-descriptions.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ <h5 fxLayout="row" fxLayoutAlign="start center" fxLayoutGap="4px">
3838
<mat-label i18n>Student-friendly description</mat-label>
3939
<textarea
4040
matInput
41-
[(ngModel)]="idea.studentText"
41+
[(ngModel)]="idea.text"
4242
(ngModelChange)="inputChanged.next($event)"
4343
cdkTextareaAutosize
4444
>

src/assets/wise5/components/common/cRater/edit-crater-idea-descriptions/edit-crater-idea-descriptions.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ export class EditCRaterIdeaDescriptionsComponent implements OnInit {
6464

6565
private createNewIdea(): CRaterIdea {
6666
const idea = new CRaterIdea('', null);
67-
idea.studentText = '';
67+
idea.text = '';
6868
return idea;
6969
}
7070

0 commit comments

Comments
 (0)