Add missing JS import in gui-editor-apex 56/123756/2
authordanielhanrahan <daniel.hanrahan@est.tech>
Mon, 30 Aug 2021 15:56:58 +0000 (16:56 +0100)
committerdanielhanrahan <daniel.hanrahan@est.tech>
Wed, 1 Sep 2021 14:51:59 +0000 (15:51 +0100)
There is a missing import for apexUtils_escapeHtml (used on line 53),
preventing the context schema table from loading

Issue-ID: POLICY-3602
Signed-off-by: danielhanrahan <daniel.hanrahan@est.tech>
Change-Id: Id08864c93201007ee353f054f0580024af1d878a

gui-editors/gui-editor-apex/src/main/resources/webapp/js/ApexContextSchemaTab.js

index c5c7daa..fa5ed6f 100644 (file)
@@ -22,7 +22,7 @@
 const {ajax_get} = require("./ApexAjax");
 const {createTable} = require('./ApexTable');
 const {rightClickMenu_scopePreserver} = require('./contextMenu');
-const {apexUtils_removeElement} = require('./ApexUtils');
+const {apexUtils_escapeHtml, apexUtils_removeElement} = require('./ApexUtils');
 
 function contextSchemaTab_reset() {
     contextSchemaTab_deactivate();