mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
For the Kibana metrics will always be numbers so we want the column to
always align right.
This commit is contained in:
parent
519089a541
commit
1e29129ac3
1 changed files with 2 additions and 2 deletions
|
@ -36,7 +36,7 @@ define(function (require) {
|
|||
$scope.getColumnClass = function (col, $first, $last) {
|
||||
var cls = [];
|
||||
|
||||
if ($last || (col.field && col.field.type === 'number')) {
|
||||
if ($last || (col.categoryName === 'metric')) {
|
||||
cls.push('visualize-table-right');
|
||||
}
|
||||
|
||||
|
@ -143,4 +143,4 @@ define(function (require) {
|
|||
}
|
||||
};
|
||||
};
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue