Added test for pagination and addad info to table if no data are passed in
diff --git a/views/ngXosViews/sampleView/src/js/main.js b/views/ngXosViews/sampleView/src/js/main.js
index 222882b..798cb0e 100644
--- a/views/ngXosViews/sampleView/src/js/main.js
+++ b/views/ngXosViews/sampleView/src/js/main.js
@@ -54,15 +54,15 @@
         ],
         filter: 'field',
         order: true,
-        pagination: {
-          pageSize: 6
-        }
+        // pagination: {
+        //   pageSize: 6
+        // }
       };
 
       // retrieving user list
       Users.query().$promise
       .then((users) => {
-        this.users = users.concat(users, users, users);
+        this.users = users;
       })
       .catch((e) => {
         throw new Error(e);