mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-19 21:13:28 -07:00
Fixed: Validation errors showing multiple times
This commit is contained in:
parent
9e9cb98b3a
commit
10fc875715
2 changed files with 16 additions and 8 deletions
|
@ -36,16 +36,16 @@ define(
|
|||
}
|
||||
}
|
||||
|
||||
var controlGroup = input.parents('.form-group');
|
||||
var formGroup = input.parents('.form-group');
|
||||
|
||||
if(controlGroup.length === 0) {
|
||||
controlGroup = input.parent();
|
||||
if(formGroup.length === 0) {
|
||||
formGroup = input.parent();
|
||||
}
|
||||
else{
|
||||
var inputGroup = controlGroup.find('.input-group');
|
||||
var inputGroup = formGroup.find('.input-group');
|
||||
|
||||
if (inputGroup.length === 0) {
|
||||
controlGroup.append('<span class="help-inline validation-error">' + errorMessage + '</span>');
|
||||
formGroup.append('<span class="help-inline validation-error">' + errorMessage + '</span>');
|
||||
}
|
||||
|
||||
else {
|
||||
|
@ -53,9 +53,9 @@ define(
|
|||
}
|
||||
}
|
||||
|
||||
controlGroup.addClass('has-error');
|
||||
formGroup.addClass('has-error');
|
||||
|
||||
return controlGroup.find('.help-inline').text();
|
||||
return formGroup.find('.help-inline').text();
|
||||
};
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue