show error for disallowed new lines in code mirror

This commit is contained in:
Keith Grant
2019-08-23 14:19:09 -07:00
committed by Jim Ladd
parent a10ad58c75
commit 901d41e261
4 changed files with 11 additions and 0 deletions

View File

@@ -1369,6 +1369,7 @@ angular.module('FormGenerator', [GeneratorHelpers.name, 'Utilities', listGenerat
html += `value="${fld}" `;
html += `default="${field.default || ''}" `;
html += `rows="${field.rows || 6}" `;
html += `one-line="${field.oneLine || ''}"`;
html += `mode="${field.mode}" `;
html += `ng-disabled="${field.ngDisabled}" `;
html += '></at-syntax-highlight>';