fix ids to support multiple syntax-highlights at once

This commit is contained in:
Keith Grant
2019-06-06 14:22:42 -07:00
committed by Jim Ladd
parent 8a04cf0cb4
commit 7b828d73be
5 changed files with 45 additions and 39 deletions

View File

@@ -1366,7 +1366,9 @@ angular.module('FormGenerator', [GeneratorHelpers.name, 'Utilities', listGenerat
html += `label="${field.label}" `;
html += `tooltip="${field.awPopOver}" `;
html += `name="${fld}" `;
html += `variables="${field.variables}" `;
html += `value="${fld}" `;
html += `default="${field.default || ''}" `;
html += `rows="${field.rows || 6}" `;
html += `ng-disabled="${field.ngDisabled}" `;
html += '></at-syntax-highlight>';
}