We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f44599a + 13ae42f commit a41a244Copy full SHA for a41a244
src/app/shared/form/builder/parsers/onebox-field-parser.ts
@@ -3,6 +3,7 @@ import {
3
DynamicSelectModelConfig,
4
} from '@ng-dynamic-forms/core';
5
6
+import { environment } from '../../../../../environments/environment';
7
import { isNotEmpty } from '../../../empty.util';
8
import {
9
DsDynamicInputModel,
@@ -90,6 +91,7 @@ export class OneboxFieldParser extends FieldParser {
90
91
return new DynamicOneboxModel(oneboxModelConfig);
92
} else {
93
const inputModelConfig: DsDynamicInputModelConfig = this.initModel(null, label);
94
+ inputModelConfig.spellCheck = environment.form.spellCheck;
95
this.setValues(inputModelConfig, fieldValue);
96
97
return new DsDynamicInputModel(inputModelConfig);
0 commit comments