fix(graph): fixed for color picker layout issue when right side legend was used, fixes #3093

This commit is contained in:
Torkel Ödegaard 2015-10-30 09:30:48 +01:00
parent 6004ba6554
commit 4dcd2ceb01
2 changed files with 7 additions and 1 deletions

View File

@ -8,6 +8,7 @@
* **cloudwatch**: fix for handling of period for long time ranges, fixes [#3086](https://github.com/grafana/grafana/issues/3086)
* **dashboard**: fix for collapse row by clicking on row title, fixes [#3065](https://github.com/grafana/grafana/issues/3065)
* **influxdb**: fix for relative time ranges `last x months` and `last x years`, fixes [#3067](https://github.com/grafana/grafana/issues/3067)
* **graph**: layout fix for color picker when right side legend was enabled, fixes [#3093](https://github.com/grafana/grafana/issues/3093)
# 2.5 (2015-10-28)

View File

@ -34,7 +34,12 @@ function (angular, _, kbn, $) {
}
function openColorSelector(e) {
var el = $(e.currentTarget);
// if we clicked inside poup container ignore click
if ($(e.target).parents('.popover').length) {
return;
}
var el = $(e.currentTarget).find('.fa-minus');
var index = getSeriesIndexForElement(el);
var seriesInfo = seriesList[index];
var popoverScope = scope.$new();