From ce3cecbec92053e1b4c4fd348ec92e1a804f85e3 Mon Sep 17 00:00:00 2001 From: Nicholas-Westby Date: Thu, 5 May 2016 21:52:03 -0700 Subject: [PATCH] Fix for incorrect validation errors. --- app/controllers/controller.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/controller.js b/app/controllers/controller.js index db98338..f5b05d3 100644 --- a/app/controllers/controller.js +++ b/app/controllers/controller.js @@ -681,7 +681,7 @@ angular.module("umbraco").controller("Imulus.ArchetypeController", function ($sc // Recursive validation of nested fieldsets. recurseFieldsets(function(item) { - if (!item.isValid) { + if (item.isValid === false) { valid = false; } }, [fieldset]);