File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/features/admin-panel/tests-admin Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -261,7 +261,7 @@ const TestAttemptDetail: FC = () => {
261
261
gap : 1 ,
262
262
} }
263
263
>
264
- { questionResult . testAnswerResults ?. map (
264
+ { questionResult ! . testAnswerResults ?. map (
265
265
( answerResult ) => (
266
266
< Chip
267
267
key = { answerResult ?. testAnswer ?. id }
@@ -282,7 +282,7 @@ const TestAttemptDetail: FC = () => {
282
282
gap : 1 ,
283
283
} }
284
284
>
285
- { questionResult . testAnswerResults ?. map (
285
+ { questionResult ! . testAnswerResults ?. map (
286
286
( answerResult ) => (
287
287
< Chip
288
288
key = { answerResult ?. testAnswer ?. id }
@@ -302,12 +302,12 @@ const TestAttemptDetail: FC = () => {
302
302
< TableCell >
303
303
< Chip
304
304
label = {
305
- questionResult . result
305
+ questionResult ! . result
306
306
? "Правильно"
307
307
: "Неправильно"
308
308
}
309
309
color = {
310
- questionResult . result ? "success" : "error"
310
+ questionResult ! . result ? "success" : "error"
311
311
}
312
312
size = "small"
313
313
/>
You can’t perform that action at this time.
0 commit comments