mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
Fix column add buttons
This commit is contained in:
parent
b0f3233f63
commit
7c641220f4
2 changed files with 10 additions and 1 deletions
|
@ -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) {
|
||||
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue