Skip to content
Snippets Groups Projects
Commit cad7654b authored by Renaud Le Gac's avatar Renaud Le Gac
Browse files

Same message for all errors on forms.

parent 7a8f0d50
No related branches found
No related tags found
No related merge requests found
......@@ -73,7 +73,7 @@ App.form.EntryFormPanel = Ext.extend(App.form.FormPanel, {
switch (action.failureType) {
case Ext.form.Action.CLIENT_INVALID:
badFields = fieldsInError(form);
msg = 'Missing of wrong fields: ';
msg = 'Missing or invalid fields: ';
msg += badFields.join(', ');
Ext.Msg.alert('Failure', msg);
break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment