/
githubmirror
/
oppia
Обзор
Документация
Войти
/
githubmirror
/
oppia
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
extensions/interactions/CodeRepl/directives/code-repl-response.component.html
17 строк
422 B
Ashutosh Chauhan
Fix part of #9749: Migrates angular html bind (#15568)
14 июл 2022, 21:01
Не верифицирован
14 июл 2022, 21:01
1825120
Код
Авторство
О чём код?
<div> <h5>Code</h5> <pre>{{ escapedAnswer.code }}</pre> <span *ngIf="escapedAnswer.output"> <h5>Output</h5> <pre>{{ escapedAnswer.output }}</pre> </span> <span *ngIf="escapedAnswer.error" [oppiaFocusOn]="errorFocusLabel"> <font color="red">Error: {{ escapedAnswer.error }}</font><br> </span> <span *ngIf="escapedAnswer.evaluation"> >> {{ escapedAnswer.evaluation }} </span> </div>