Fix ngRepeat syntax error
authorColeman Watts <coleman@civicrm.org>
Tue, 10 Dec 2019 20:10:49 +0000 (15:10 -0500)
committerCiviCRM <info@civicrm.org>
Wed, 16 Sep 2020 02:13:20 +0000 (19:13 -0700)
ext/afform/core/ang/afField/widgets/Radio.html

index f914f64c4377c174cb575af5e85fc5152e9f85b5..b3e9917b60988400e375b72af5a07fdc549759bb 100644 (file)
@@ -1,4 +1,4 @@
-<label ng-repeat="(opt in getOptions()" >
+<label ng-repeat="opt in getOptions()" >
   <input class="crm-form-radio" type="radio" ng-model="getData()[fieldName]" value="{{ opt.key }}" />
   {{ opt.label }}
 </label>