mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
do not allow 0-sized tags
This commit is contained in:
parent
b282084cc5
commit
42bbc39110
2 changed files with 2 additions and 2 deletions
|
@ -74,7 +74,7 @@ module.controller('KbnTagCloudController', function ($scope, $element, Private,
|
|||
});
|
||||
|
||||
|
||||
$scope.$watch('vis.params', (options) =>tagCloud.setOptions(options));
|
||||
$scope.$watch('vis.params', (options) => tagCloud.setOptions(options));
|
||||
|
||||
$scope.$watch(getContainerSize, _.debounce(() => {
|
||||
tagCloud.resize();
|
||||
|
|
|
@ -18,7 +18,7 @@ uiModules.get('kibana/table_vis')
|
|||
connect: true,
|
||||
tooltips: true,
|
||||
step: 1,
|
||||
range: {'min': 0, 'max': 100},
|
||||
range: {'min': 1, 'max': 100},
|
||||
format: {to: (value) => parseInt(value) + 'px', from: value => parseInt(value)}
|
||||
});
|
||||
slider.noUiSlider.on('change', function () {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue