Repository: incubator-ignite
Updated Branches:
  refs/heads/ignite-843 2af72547b -> 7b90b486e


# ignite-850 WIP Discovery details.


Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/7b90b486
Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/7b90b486
Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/7b90b486

Branch: refs/heads/ignite-843
Commit: 7b90b486e87303334cc5810c094755f27638d63f
Parents: 2af7254
Author: Andrey <anovi...@gridgain.com>
Authored: Wed Jun 10 12:47:28 2015 +0300
Committer: Andrey <anovi...@gridgain.com>
Committed: Wed Jun 10 12:47:28 2015 +0300

----------------------------------------------------------------------
 modules/webconfig/nodejs/views/caches.jade   | 4 ++--
 modules/webconfig/nodejs/views/clusters.jade | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/7b90b486/modules/webconfig/nodejs/views/caches.jade
----------------------------------------------------------------------
diff --git a/modules/webconfig/nodejs/views/caches.jade 
b/modules/webconfig/nodejs/views/caches.jade
index e42c026..26310e2 100644
--- a/modules/webconfig/nodejs/views/caches.jade
+++ b/modules/webconfig/nodejs/views/caches.jade
@@ -32,9 +32,9 @@ block content
         button.btn.btn-default(bs-select ng-init='create.template = 
templates[0].value' ng-model='create.template' data-template='/select' 
data-placeholder='Choose cache template' bs-options='item.value as item.label 
for item in templates')
         h3(ng-hide='caches.length == 0') Caches
         .links
-            table.col-sm-12(st-table='rowCollection' st-safe-src='caches')
+            table.col-sm-12(st-table='caches')
                 tbody
-                    tr(ng-repeat='row in rowCollection')
+                    tr(ng-repeat='row in caches track by row._id')
                         td.col-sm-6(ng-class='{active: row._id == 
selectedItem._id}')
                             a(ng-click='selectItem(row)') {{$index + 1}}. 
{{row.name}}, {{row.mode | displayValue:modes:'Cache mode not set'}}, 
{{row.atomicityMode | displayValue:atomicities:'Cache atomicity not set'}}
         .row.col-sm-12

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/7b90b486/modules/webconfig/nodejs/views/clusters.jade
----------------------------------------------------------------------
diff --git a/modules/webconfig/nodejs/views/clusters.jade 
b/modules/webconfig/nodejs/views/clusters.jade
index 31f9db1..82d0407 100644
--- a/modules/webconfig/nodejs/views/clusters.jade
+++ b/modules/webconfig/nodejs/views/clusters.jade
@@ -34,7 +34,7 @@ block content
         .links
             table.col-sm-12(st-table='clusters')
                 tbody
-                    tr(ng-repeat='row in clusters')
+                    tr(ng-repeat='row in clusters track by row._id')
                         td.col-sm-6(ng-class='{active: row._id == 
selectedItem._id}')
                             a(ng-click='selectItem(row)') {{$index + 1}}. 
{{row.name}}, {{row.discovery.kind | displayValue:discoveries:'Discovery not 
set'}}
         .row.col-sm-12

Reply via email to