mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2024-11-24 14:36:54 +00:00
e9181f19d7
* Fix datatables issue and indicator not loading for Table API > Entities * Fix jquery and datatables compile issues. Add patch for datatables.net-colreorder error in types * Fix side panel size. Fix bug resizing side panel. * Update PanelContainerComponent unit test snapshot * Fix commented code
23 lines
830 B
Diff
23 lines
830 B
Diff
diff --git a/node_modules/datatables.net-colreorder/types/types.d.ts b/node_modules/datatables.net-colreorder/types/types.d.ts
|
|
index e5dc283..1930c2b 100644
|
|
--- a/node_modules/datatables.net-colreorder/types/types.d.ts
|
|
+++ b/node_modules/datatables.net-colreorder/types/types.d.ts
|
|
@@ -7,7 +7,7 @@
|
|
|
|
/// <reference types="jquery" />
|
|
|
|
-import DataTables, {Api} from 'datatables.net';
|
|
+import DataTables, { Api } from 'datatables.net';
|
|
|
|
export default DataTables;
|
|
|
|
@@ -40,6 +40,8 @@ declare module 'datatables.net' {
|
|
/**
|
|
* Create a new ColReorder instance for the target DataTable
|
|
*/
|
|
+ // Ignore this error: error TS7013: Construct signature, which lacks return-type annotation, implicitly has an 'any' return type.
|
|
+ // @ts-ignore
|
|
new (dt: Api<any>, settings: boolean | ConfigColReorder);
|
|
|
|
/**
|