Fix column add buttons

This commit is contained in:
Rashid Khan 2014-08-26 16:34:25 -07:00
parent b0f3233f63
commit 7c641220f4
2 changed files with 10 additions and 1 deletions

View file

@ -207,6 +207,11 @@ define(function (require) {
$scope.filtering(field, row._source[field] || row[field], operation);
};
$scope.$watch('columns', function () {
element.empty();
createSummaryRow($scope.row, $scope.row._id);
});
// create a tr element that lists the value for each *column*
function createSummaryRow(row, id) {

View file

@ -112,7 +112,7 @@
}
.sidebar-item:hover:hover button.discover-field-toggle {
display: inherit;
display: block;
}
.discover-field-details-close {
@ -199,6 +199,10 @@ disc-field-chooser {
display: none;
}
}
.sidebar-item-title {
position: relative;
}
}
.results {