IGNITE-8979 Web Console: Fixed dropdown behavior on "Refresh" popover on Query screen.
Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/c9563467 Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/c9563467 Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/c9563467 Branch: refs/heads/ignite-8446 Commit: c956346762c9c01df94d3a4307ce22dcc58e2b5c Parents: 89d34f6 Author: Dmitriy Shabalin <[email protected]> Authored: Wed Jul 11 15:31:12 2018 +0700 Committer: Alexey Kuznetsov <[email protected]> Committed: Wed Jul 11 15:31:12 2018 +0700 ---------------------------------------------------------------------- .../frontend/app/components/bs-select-menu/template.pug | 2 +- modules/web-console/frontend/views/sql/paragraph-rate.tpl.pug | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/c9563467/modules/web-console/frontend/app/components/bs-select-menu/template.pug ---------------------------------------------------------------------- diff --git a/modules/web-console/frontend/app/components/bs-select-menu/template.pug b/modules/web-console/frontend/app/components/bs-select-menu/template.pug index d878063..4ffa144 100644 --- a/modules/web-console/frontend/app/components/bs-select-menu/template.pug +++ b/modules/web-console/frontend/app/components/bs-select-menu/template.pug @@ -34,7 +34,7 @@ ul.bs-select-menu( type='button' role='menuitem' tabindex='-1' - ng-click='$select($index, $event)' + ng-click='$select($index, $event); $event.stopPropagation();' ng-class=`{ 'bssm-item-button__active': $isActive($index) }` data-placement='right auto' title='{{ ::match.label }}' http://git-wip-us.apache.org/repos/asf/ignite/blob/c9563467/modules/web-console/frontend/views/sql/paragraph-rate.tpl.pug ---------------------------------------------------------------------- diff --git a/modules/web-console/frontend/views/sql/paragraph-rate.tpl.pug b/modules/web-console/frontend/views/sql/paragraph-rate.tpl.pug index 03c6497..2933a3e 100644 --- a/modules/web-console/frontend/views/sql/paragraph-rate.tpl.pug +++ b/modules/web-console/frontend/views/sql/paragraph-rate.tpl.pug @@ -24,7 +24,7 @@ .col-sm-4 input.form-control(id='paragraph-rate' ng-init='value = paragraph.rate.value' ng-model='value' type='number' min='1' required ignite-auto-focus) .col-sm-8(style='padding-left: 5px') - button.form-control.select-toggle(id='paragraph-unit' ng-init='unit = paragraph.rate.unit' ng-model='unit' required placeholder='Time unit' bs-select bs-options='item.value as item.label for item in timeUnit' data-container='false' tabindex='0') + button.form-control.select-toggle(id='paragraph-unit' ng-init='unit = paragraph.rate.unit' ng-model='unit' required placeholder='Time unit' bs-select bs-options='item.value as item.label for item in timeUnit' tabindex='0') .form-actions(style='margin-top: 30px; padding: 5px') button.btn.btn-primary(id='paragraph-rate-start' ng-disabled='popoverForm.$invalid' ng-click='startRefresh(paragraph, value, unit); $hide()') Start button.btn.btn-primary.btn-default(id='paragraph-rate-stop' ng-click='stopRefresh(paragraph); $hide()' ng-disabled='!paragraph.rate.installed') Stop
