impaktapps-ui-builder 0.0.82 → 0.0.83
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -11288,7 +11288,7 @@ const buildTextArea = (config, componentScope) => {
|
|
|
11288
11288
|
textArea.config.main.placeholder = config.placeholder;
|
|
11289
11289
|
}
|
|
11290
11290
|
if (config.enableCodeEditor) {
|
|
11291
|
-
textArea.config.main.enableCodeEditor = config.enableCodeEditor;
|
|
11291
|
+
textArea.config.main.enableCodeEditor = config.enableCodeEditor === "YES" ? true : false;
|
|
11292
11292
|
}
|
|
11293
11293
|
if (config.codeEditorLanguage) {
|
|
11294
11294
|
textArea.config.main.codeEditorLanguage = config.codeEditorLanguage;
|