Removes the spellcheck="false" attributes on editable content fields in
both the rich text and flat MARC editors, to allow browser-based
spellcheckers to work as expected.
Signed-off-by: Stephanie Leary <stephanie.leary@equinoxOLI.org>
<ng-container *ngIf="bigText">
<div contenteditable
id='{{randId}}'
- spellcheck="false"
class="d-inline-block text-dark text-break {{moreClasses}}"
[ngClass]="{'auth-invalid': isAuthInvalid()}"
[attr.tabindex]="fieldText ? -1 : '0'"
<ng-container *ngIf="!bigText">
<input
id='{{randId}}'
- spellcheck="false"
class="text-dark rounded-0 form-control {{moreClasses}}"
[ngClass]="{'auth-invalid': isAuthInvalid()}"
[size]="inputSize()"
<textarea class="form-control flat-editor-content"
(change)="textChanged()"
(blur)="record.absorbBreakerChanges()"
- [(ngModel)]="record.breakerText" rows="{{rowCount()}}" spellcheck="false">
+ [(ngModel)]="record.breakerText" rows="{{rowCount()}}">
</textarea>
</div>