Changeset ad0fcd3 for src/Clients
- Timestamp:
- 10/31/21 10:24:17 (3 years ago)
- Branches:
- dev
- Children:
- ad079e5
- Parents:
- 806f4ee
- Location:
- src/Clients/Angular/finki-chattery/src/app
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Clients/Angular/finki-chattery/src/app/core/state/question-state/question-state.models.ts
r806f4ee rad0fcd3 34 34 public correctAnswer!: boolean; 35 35 public createdOn!: moment.Moment; 36 public upvotesCount!: number;36 public votesCount!: number; 37 37 public studentResponse!: AnswerStudentQuestionStateResponse; 38 38 public answerResponsesResponse!: AnswerResponseQuestionStateResponse[]; -
src/Clients/Angular/finki-chattery/src/app/core/state/question-state/question.mapper.ts
r806f4ee rad0fcd3 51 51 x.correctAnswer, 52 52 moment(x.createdOn), 53 x. upvotesCount,53 x.votesCount, 54 54 answerStudent, 55 55 answerResponses -
src/Clients/Angular/finki-chattery/src/app/shared-app/components/question/question-preview/question-preview.component.html
r806f4ee rad0fcd3 14 14 <mat-card-content> 15 15 <div fxLayout="row wrap" fxLayoutAlign="space-around none"> 16 <app-vote [voteCount]="answer. upvotesCount" [correct]="answer.correctAnswer" fxFlex="6%"></app-vote>16 <app-vote [voteCount]="answer.votesCount" [correct]="answer.correctAnswer" fxFlex="6%"></app-vote> 17 17 <div fxFlex="92%"> 18 18 <app-text-editor -
src/Clients/Angular/finki-chattery/src/app/shared-app/models/question-state-view-models.models.ts
r806f4ee rad0fcd3 32 32 public correctAnswer: boolean, 33 33 public createdOn: moment.Moment, 34 public upvotesCount: number,34 public votesCount: number, 35 35 public student: AnswerStudentQuestionStateViewModel, 36 36 public answerResponses: AnswerResponseQuestionStateViewModel[]
Note:
See TracChangeset
for help on using the changeset viewer.