fixing based on last review

This commit is contained in:
ppisljar 2016-12-19 15:26:41 +01:00
parent 8653ea112b
commit 92ad40750d
2 changed files with 1 additions and 5 deletions

View file

@ -97,7 +97,6 @@
<div class="kuiSideBarSection">
<table class="vis-editor-agg-editor-ranges form-group" ng-show="vis.params.colorsRange.length">
<tr>
<th></th>
<th>
<label>From</label>
</th>
@ -107,9 +106,6 @@
</tr>
<tr ng-repeat="range in vis.params.colorsRange track by $index">
<td>
<div class="kuiSideBarFormRow__label__colorbox" ng-style="{ 'background-color': getColor($index) }" />
</td>
<td>
<input
ng-model="range.from"

View file

@ -6,7 +6,7 @@ import uiModules from 'ui/modules';
uiModules.get('kibana')
.directive('visualizeLegend', function (Private, getAppState, $timeout) {
.directive('visualizeLegend', function (Private, getAppState) {
const Data = Private(VislibLibDataProvider);
const filterBarClickHandler = Private(FilterBarFilterBarClickHandlerProvider);