[CORD-1653] Adding a debug tab in model details

Change-Id: I6c3be4227309cbeb2dd7ab6252c1312dfd00fb18
diff --git a/src/app/core/index.ts b/src/app/core/index.ts
index 0172223..523bae6 100644
--- a/src/app/core/index.ts
+++ b/src/app/core/index.ts
@@ -43,8 +43,9 @@
 import {XosDebouncer} from './services/helpers/debounce.helper';
 import {ArrayToListFilter} from './table/array-to-list.filter';
 import {xosLoader} from './loader/loader';
-import {xosDebugComponent} from './debug/debug';
+import {xosDebugSummary} from './debug/debug-summary';
 import {XosDebugService} from './debug/debug.service';
+import {xosDebugModel} from './debug/debug-model';
 
 export const xosCore = 'xosCore';
 
@@ -80,6 +81,7 @@
   .component('xosValidation', xosValidation)
   .component('xosSidePanel', xosSidePanel)
   .component('xosKeyBindingPanel', xosKeyBindingPanel)
-  .component('xosDebug', xosDebugComponent)
+  .component('xosDebugSummary', xosDebugSummary)
+  .component('xosDebugModel', xosDebugModel)
   .filter('pagination', PaginationFilter)
   .filter('arrayToList', ArrayToListFilter);