Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
12.1, 12.2
-
None
-
None
Description
Below is code snipped:
var fn = function () { var actions = new DSsysLibActionIndex.lib.ActionIndex(); actions.registerAction('asyncModalUpdateModelList', function (modal, params) { import('./actions/asyncModalUpdateModelList.js').then(function (Module) { var action = new Module.AsyncModalUpdateModelListAction(modal, params); action.run(); }); }); actions.registerAction('asyncModalUpdateAuthorityList', function (modal, params) { import('./actions/asyncModalUpdateAuthorityList.js').then(function (Module) { var action = new Module.AsyncModalUpdateAuthorityListAction(modal, params); action.run(); }); }); };
What is more interesting error appears only on the very first occurrence.
Next occurrence is treated as valid.