Skip to content

Commit

Permalink
fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
alexwizp committed Oct 2, 2020
1 parent b0d65f1 commit 4d3230d
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import '../../doc_viewer';
import openRowHtml from './table_row/open.html';
import detailsHtml from './table_row/details.html';

import { dispatchRenderComplete } from '../../../../../../kibana_utils/public';
import { dispatchRenderComplete, url } from '../../../../../../kibana_utils/public';
import { DOC_HIDE_TIME_COLUMN_SETTING } from '../../../../../common';
import cellTemplateHtml from '../components/table_row/cell.html';
import truncateByHeightTemplateHtml from '../components/table_row/truncate_by_height.html';
Expand Down Expand Up @@ -119,16 +119,16 @@ export function createTableRowDirective($compile: ng.ICompileService) {
const appFilters: any = getServices().filterManager.getAppFilters();

const hash = stringify(
{
url.encodeQuery({
_g: rison.encode({
filters: globalFilters || [],
}),
_a: rison.encode({
columns: $scope.columns,
filters: (appFilters || []).map(esFilters.disableFilter),
}),
},
{ encode: false }
}),
{ encode: false, sort: false }
);

return `#/context/${encodeURIComponent($scope.indexPattern.id)}/${encodeURIComponent(
Expand Down

0 comments on commit 4d3230d

Please sign in to comment.