ultimate-jekyll-manager 0.0.162 → 0.0.163
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -367,11 +367,10 @@ export class FormManager {
|
|
|
367
367
|
return;
|
|
368
368
|
}
|
|
369
369
|
|
|
370
|
-
//
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
// }
|
|
370
|
+
// Skip if field is not in current input group (respects setInputGroup filter)
|
|
371
|
+
if (!this._isFieldInGroup($field)) {
|
|
372
|
+
return;
|
|
373
|
+
}
|
|
375
374
|
|
|
376
375
|
// Skip if already has an error (from previous validation)
|
|
377
376
|
if (this._fieldErrors[name]) {
|