Fix employee filed not loading issue

This commit is contained in:
Alan Cell
2021-05-07 08:16:06 +02:00
parent c276009bd8
commit 3eaf290a58
3 changed files with 5 additions and 4 deletions

View File

@@ -19,6 +19,9 @@ include APP_BASE_PATH.'modulejslibs.inc.php';
<div class="tab-pane active" id="tabPageEmployeeFieldName"> <div class="tab-pane active" id="tabPageEmployeeFieldName">
<div id="EmployeeFieldName" class="reviewBlock" data-content="List" style="padding-left:5px;"> <div id="EmployeeFieldName" class="reviewBlock" data-content="List" style="padding-left:5px;">
</div>
<div id="EmployeeFieldNameForm" class="reviewBlock" data-content="Form" style="padding-left:5px;display:none;">
</div> </div>
</div> </div>
</div> </div>

View File

@@ -1,4 +1,3 @@
import { FieldNameAdapter, CustomFieldAdapter } from './lib'; import { FieldNameAdapter } from './lib';
window.FieldNameAdapter = FieldNameAdapter; window.FieldNameAdapter = FieldNameAdapter;
window.CustomFieldAdapter = CustomFieldAdapter;

View File

@@ -4,7 +4,6 @@
*/ */
import AdapterBase from '../../../api/AdapterBase'; import AdapterBase from '../../../api/AdapterBase';
import CustomFieldAdapter from '../../../api/CustomFieldAdapter';
/** /**
* FieldNameAdapter * FieldNameAdapter
@@ -44,4 +43,4 @@ class FieldNameAdapter extends AdapterBase {
} }
module.exports = { FieldNameAdapter, CustomFieldAdapter }; module.exports = { FieldNameAdapter };