From c0eae5d955ba5d0aad0a08b063c0159b2c5637c0 Mon Sep 17 00:00:00 2001 From: Hadi Nategh Date: Mon, 14 Jun 2021 15:05:08 +0200 Subject: [PATCH] Fix import statement and remove debugger --- addressbook/js/CRM.js | 1 - addressbook/js/CRM.ts | 1 - infolog/js/app.js | 2 +- infolog/js/app.ts | 2 +- 4 files changed, 2 insertions(+), 4 deletions(-) diff --git a/addressbook/js/CRM.js b/addressbook/js/CRM.js index 93e3fbd4d6..17e5885587 100644 --- a/addressbook/js/CRM.js +++ b/addressbook/js/CRM.js @@ -97,7 +97,6 @@ export class CRMView extends EgwApp { var _a; // Check let contact_ids = app_obj.et2.getArrayMgr("content").getEntry("action_id") || ""; - debugger; if (!contact_ids) return; for (let existing_app of EgwApp._instances) { diff --git a/addressbook/js/CRM.ts b/addressbook/js/CRM.ts index f4c9993733..58fc714c94 100644 --- a/addressbook/js/CRM.ts +++ b/addressbook/js/CRM.ts @@ -127,7 +127,6 @@ export class CRMView extends EgwApp { // Check let contact_ids = app_obj.et2.getArrayMgr("content").getEntry("action_id") || ""; - debugger; if(!contact_ids) return; for (let existing_app of EgwApp._instances) diff --git a/infolog/js/app.js b/infolog/js/app.js index e74b9ce530..edf9851744 100644 --- a/infolog/js/app.js +++ b/infolog/js/app.js @@ -13,7 +13,7 @@ import { EgwApp } from '../../api/js/jsapi/egw_app'; import { etemplate2 } from "../../api/js/etemplate/etemplate2"; import { CRMView } from "../../addressbook/js/CRM"; -import { nm_open_popup } from "../../api/js/etemplate/et2_extension_nextmatch_actions"; +import { nm_open_popup } from "../../api/js/etemplate/et2_extension_nextmatch_actions.js"; import { egw } from "../../api/js/jsapi/egw_global"; /** * UI for Infolog diff --git a/infolog/js/app.ts b/infolog/js/app.ts index 7c3604373a..b3c13b9f58 100644 --- a/infolog/js/app.ts +++ b/infolog/js/app.ts @@ -17,7 +17,7 @@ import {etemplate2} from "../../api/js/etemplate/etemplate2"; import {et2_nextmatch} from "../../api/js/etemplate/et2_extension_nextmatch"; import {CRMView} from "../../addressbook/js/CRM"; import {et2_selectbox} from "../../api/js/etemplate/et2_widget_selectbox"; -import {nm_open_popup} from "../../api/js/etemplate/et2_extension_nextmatch_actions"; +import {nm_open_popup} from "../../api/js/etemplate/et2_extension_nextmatch_actions.js"; import {egw} from "../../api/js/jsapi/egw_global"; /**