From 7f457c455c086cdd46427c3ea205a8b871723cc3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Vachon?= Date: Mon, 23 Feb 2015 10:37:54 -0500 Subject: [PATCH] FIX : Table module needs dependencies --- app/components/table/table.js | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/app/components/table/table.js b/app/components/table/table.js index e0021ec..fe6334a 100644 --- a/app/components/table/table.js +++ b/app/components/table/table.js @@ -1,6 +1,16 @@ 'use strict'; -angular.module('adagios.table', ['adagios.live']) +angular.module('adagios.table', ['adagios.live', + 'adagios.table.actionbar', + 'adagios.filters', + 'adagios.table.cell_host', + 'adagios.table.cell_duration', + 'adagios.table.cell_service_check', + 'adagios.table.cell_last_check', + 'adagios.table.cell_hosts_host', + 'adagios.table.cell_host_address', + 'adagios.table.cell_host_status' + ]) .value('tableConfig', { cells: { 'text': [], 'name': [] }, apiName: '',