Merge pull request #476 from Flusspferd123/spellingMistake

Typo in dropdown-field-parser.ts fixed
This commit is contained in:
Tim Donohue
2019-09-06 15:36:31 +02:00
committed by GitHub

View File

@@ -29,7 +29,7 @@ export class DropdownFieldParser extends FieldParser {
const dropdownModel = new DynamicScrollableDropdownModel(dropdownModelConfig, layout);
return dropdownModel;
} 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.`);
}
}
}