IGNITE-843 minor jade template fix.
Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/c8932348 Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/c8932348 Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/c8932348 Branch: refs/heads/ignite-843-rc3 Commit: c8932348be13e35b5856e09507d738cf27d648fd Parents: 2ae3bce Author: Alexey Kuznetsov <[email protected]> Authored: Wed Feb 10 16:13:58 2016 +0700 Committer: Alexey Kuznetsov <[email protected]> Committed: Wed Feb 10 16:13:58 2016 +0700 ---------------------------------------------------------------------- .../src/main/js/views/includes/controls.jade | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/c8932348/modules/control-center-web/src/main/js/views/includes/controls.jade ---------------------------------------------------------------------- diff --git a/modules/control-center-web/src/main/js/views/includes/controls.jade b/modules/control-center-web/src/main/js/views/includes/controls.jade index f08c9dd..557f121 100644 --- a/modules/control-center-web/src/main/js/views/includes/controls.jade +++ b/modules/control-center-web/src/main/js/views/includes/controls.jade @@ -530,16 +530,16 @@ mixin main-table(title, rows, focusId, click, rowTemplate, searchField) lable.labelHeader.labelFormField #{title}: .col-sm-3.pull-right(style='padding: 0') input.form-control(type='text' st-search='#{searchField}' placeholder='Filter #{title}...') - tbody - tr - td - .scrollable-y(ng-show='displayedRows.length > 0' style='max-height: 200px') - table - tbody - tr(ng-repeat='row in displayedRows track by row._id' ignite-bs-affix-update) - td - a(ng-class='{active: row._id == selectedItem._id}' on-click-focus=focusId ng-click=click) #{rowTemplate} - label.placeholder(ng-show='displayedRows.length == 0') No #{rows} found + tbody + tr + td + .scrollable-y(ng-show='displayedRows.length > 0' style='max-height: 200px') + table + tbody + tr(ng-repeat='row in displayedRows track by row._id' ignite-bs-affix-update) + td + a(ng-class='{active: row._id == selectedItem._id}' on-click-focus=focusId ng-click=click) #{rowTemplate} + label.placeholder(ng-show='displayedRows.length == 0') No #{rows} found mixin groups(groups, dataSource) .panel.panel-default(ng-repeat='group in #{groups}' ng-click='triggerDigest=true' ng-hide='{{group.hide}}')
