[ADF-3591] spellcheck support for code (#3827)

* setup spellcheck
This commit is contained in:
Denys Vuika
2018-10-23 15:05:38 +01:00
committed by Eugenio Romano
parent 53d96679ea
commit e39a2b149b
262 changed files with 1561 additions and 1005 deletions

View File

@@ -312,7 +312,7 @@ export class DemoForm {
'maxLength': 0,
'minValue': null,
'maxValue': null,
'regexPatt§12212ern': null,
'regexPattern': null,
'optionType': null,
'hasEmptyValue': null,
'options': [
@@ -1519,8 +1519,8 @@ export class DemoForm {
'1': [
{
'fieldType': 'RestFieldRepresentation',
'id': 'typeahedField',
'name': 'TypeahedField',
'id': 'typeaheadField',
'name': 'TypeaheadField',
'type': 'typeahead',
'value': null,
'required': false,

View File

@@ -35,7 +35,7 @@ export class FakeFormService extends FormService {
}
public getRestFieldValues(taskId: string, fieldId: string): Observable<any> {
if (fieldId === 'typeahedField') {
if (fieldId === 'typeaheadField') {
return of([
{ 'id': '1', 'name': 'Leanne Graham' },
{ 'id': '2', 'name': 'Ervin Howell' },

View File

@@ -51,7 +51,7 @@ export class FormLoadingComponent implements OnInit {
onLoadButtonClicked() {
this.formattedData = {
'typeahedField': this.typeaheadFieldValue,
'typeaheadField': this.typeaheadFieldValue,
'selectBox': this.selectFieldValue,
'radioButton': this.radioButtonFieldValue
};