Repository: incubator-ignite Updated Branches: refs/heads/ignite-843 be2b81df0 -> 52b4244d5
IGNITE-843: Fixed reordering. Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/b896b374 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/b896b374 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/b896b374 Branch: refs/heads/ignite-843 Commit: b896b37425d9bcd46166853bf227f388f141cd24 Parents: be2b81d Author: AKuznetsov <akuznet...@gridgain.com> Authored: Thu Jun 18 21:44:50 2015 +0700 Committer: AKuznetsov <akuznet...@gridgain.com> Committed: Thu Jun 18 21:44:50 2015 +0700 ---------------------------------------------------------------------- modules/webconfig/nodejs/views/includes/controls.jade | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/b896b374/modules/webconfig/nodejs/views/includes/controls.jade ---------------------------------------------------------------------- diff --git a/modules/webconfig/nodejs/views/includes/controls.jade b/modules/webconfig/nodejs/views/includes/controls.jade index d341b75..9b4748e 100644 --- a/modules/webconfig/nodejs/views/includes/controls.jade +++ b/modules/webconfig/nodejs/views/includes/controls.jade @@ -53,7 +53,7 @@ mixin details-row div(ng-switch-when='table-simple' style='margin-right: 5px; margin-top: -0.65em') table.col-sm-12.links-edit(st-table=detailMdl) tbody - tr(ng-repeat='item in #{detailMdl}') + tr(ng-repeat='item in #{detailMdl} track by $index') td.col-sm-11 div(ng-show='detail.editIdx != {{$index}}') a(ng-click='detail.editIdx = $index; curValue = #{detailMdl}[$index]') {{$index + 1}}) {{item}} @@ -121,7 +121,7 @@ mixin form-row +tipLabel('field.tip') table.links-edit.col-sm-12(st-table=tblMdl ng-show='#{tblMdl}.length > 0') tbody - tr.col-sm-12(ng-repeat='item in #{tblMdl}') + tr.col-sm-12(ng-repeat='item in #{tblMdl} track by $index') td.col-sm-6 div(ng-show='field.editIdx != {{$index}}') a(ng-click='field.editIdx = $index; curValue = #{tblMdl}[$index]') {{$index + 1}}. {{item | compact}}