Repository: ignite Updated Branches: refs/heads/ignite-843-rc2 125f56617 -> dcb0450f4
IGNITE-843 Fixed filtration. Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/dcb0450f Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/dcb0450f Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/dcb0450f Branch: refs/heads/ignite-843-rc2 Commit: dcb0450f44c8d71ab7c33d9702963a0361f38691 Parents: 125f566 Author: Alexey Kuznetsov <[email protected]> Authored: Tue Feb 9 16:51:14 2016 +0700 Committer: Alexey Kuznetsov <[email protected]> Committed: Tue Feb 9 16:51:14 2016 +0700 ---------------------------------------------------------------------- .../src/main/js/views/configuration/domains-import.jade | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/dcb0450f/modules/control-center-web/src/main/js/views/configuration/domains-import.jade ---------------------------------------------------------------------- diff --git a/modules/control-center-web/src/main/js/views/configuration/domains-import.jade b/modules/control-center-web/src/main/js/views/configuration/domains-import.jade index 790a789..d1877bd 100644 --- a/modules/control-center-web/src/main/js/views/configuration/domains-import.jade +++ b/modules/control-center-web/src/main/js/views/configuration/domains-import.jade @@ -111,7 +111,7 @@ mixin td-ellipses-lbl(w, lbl) td(width='30px') input(type='checkbox' ng-model='schema.use' ng-change='selectSchema()') td - label {{::schema.name}} + label {{schema.name}} .import-domain-model-wizard-page(ng-show='importDomain.action == "tables"') table.table.metadata(st-table='importDomain.displayedTables' st-safe-src='importDomain.tables') thead @@ -138,8 +138,8 @@ mixin td-ellipses-lbl(w, lbl) tr(ng-repeat='table in importDomain.displayedTables track by $index') td(width='30px' style='min-width: 30px; max-width: 30px') input(type='checkbox' ng-model='table.use' ng-change='selectTable()') - +td-ellipses-lbl('130px', '{{::table.schema}}') - +td-ellipses-lbl('160px', '{{::table.tbl}}') + +td-ellipses-lbl('130px', '{{table.schema}}') + +td-ellipses-lbl('160px', '{{table.tbl}}') td(colspan='2' width='288px' style='min-width: 160px; max-width: 160px') div.td-ellipsis a(ng-if='!table.edit' ng-click='startEditDbTableCache(table)') {{tableActionView(table)}}
