Typo in dropdown-field-parser.ts fixed

This commit is contained in:
Julius Gruber
2019-09-06 13:22:43 +02:00
parent 3a68b6dd7b
commit 92f8a5d522

View File

@@ -29,7 +29,7 @@ export class DropdownFieldParser extends FieldParser {
const dropdownModel = new DynamicScrollableDropdownModel(dropdownModelConfig, layout); const dropdownModel = new DynamicScrollableDropdownModel(dropdownModelConfig, layout);
return dropdownModel; return dropdownModel;
} else { } else {
throw Error(`Authority name is not available. Please checks form configuration file.`); throw Error(`Authority name is not available. Please check the form configuration file.`);
} }
} }
} }