From 7e3ac89503b08fee4f03c3123133aacbea44ebdb Mon Sep 17 00:00:00 2001 From: Matthew Hailwood Date: Mon, 25 Aug 2014 18:33:21 +1200 Subject: [PATCH] Add missing , for EditableCheckboxGroupField Missing the , is breaking validation --- templates/ValidationScript.ss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/ValidationScript.ss b/templates/ValidationScript.ss index 2b5850d..f9473fe 100644 --- a/templates/ValidationScript.ss +++ b/templates/ValidationScript.ss @@ -30,7 +30,7 @@ rules: { <% loop $Fields %> <% if $Validation %><% if ClassName == EditableCheckboxGroupField %> - '{$Name.JS}[]': {$ValidationJSON.RAW} + '{$Name.JS}[]': {$ValidationJSON.RAW}, <% else %> '{$Name.JS}': {$ValidationJSON.RAW}, <% end_if %><% end_if %>