/
githubmirror
/
oppia
Обзор
Документация
Войти
/
githubmirror
/
oppia
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
extensions/interactions/ItemSelectionInput/directives/item-selection-input-short-response.component.html
19 строк
448 B
Ashutosh Chauhan
Fix part of #9749: Migrates angular html bind (#15568)
14 июл 2022, 21:01
Не верифицирован
14 июл 2022, 21:01
1825120
Код
Авторство
О чём код?
<div *ngIf="responses.length === 0"> <em>No choices selected.</em> </div> <div *ngIf="responses.length === 1"> <span> <oppia-rte-output-display [rteString]="responses[0]"> </oppia-rte-output-display> </span> </div> <ul *ngIf="responses.length > 1"> <li *ngFor="let response of responses; index as idx"> <span> <oppia-rte-output-display [rteString]="response"> </oppia-rte-output-display> </span> </li> </ul>