mirror of
https://github.com/ZwareBear/awx.git
synced 2026-04-26 09:51:48 -05:00
Properly name the required asterisks class
This commit is contained in:
@@ -639,7 +639,7 @@ angular.module('FormGenerator', [GeneratorHelpers.name, 'Utilities', listGenerat
|
||||
html += (field.labelNGClass) ? "ng-class=\"" + field.labelNGClass + "\" " : "";
|
||||
html += "for=\"" + fld + '">\n';
|
||||
|
||||
html += `${field.required ? '<span class="foobar">*</span>' : ''}`;
|
||||
html += `${field.required ? '<span class="Form-requiredAsterisk">*</span>' : ''}`;
|
||||
|
||||
html += (field.icon) ? Icon(field.icon) : "";
|
||||
if (field.labelBind) {
|
||||
|
||||
Reference in New Issue
Block a user