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

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

View File

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