/
githubmirror
/
oppia
Обзор
Документация
Войти
/
githubmirror
/
oppia
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
extensions/interactions/TextInput/directives/text-input-interaction.component.html
14 строк
745 B
Jayam Patel
[GSoC 2025 - Acceptance Tests] M1.8 - Implement Acceptance tests for Exploration Editor (#11 in CUJv3 Doc) (#22969)
05 авг 2025, 06:02
Не верифицирован
05 авг 2025, 06:02
6e293e1
Код
Авторство
О чём код?
<!-- This outer div is needed, otherwise the textarea will overlap the footer of the page. --> <div class="text-input-container e2e-test-text-input-container"> <!-- This form is needed for submitting the answer on hitting enter. --> <form (ngSubmit)="submitAnswer(answer)" role="form" class="form-horizontal"> <schema-based-editor [schema]="getSchema()" [localValue]="answer" (localValueChange)="updateAnswer($event)" [labelForFocusTarget]="getLabelForFocusTarget()"> </schema-based-editor> </form> <div *ngIf="errorMessageI18nKey" class="oppia-form-error-container e2e-test-form-error-container"> {{errorMessageI18nKey | translate}} </div> </div>