File tree Expand file tree Collapse file tree
src/plugins/discover/public/application/angular/doc_table/components Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ import '../../doc_viewer';
2626import openRowHtml from './table_row/open.html' ;
2727import detailsHtml from './table_row/details.html' ;
2828
29- import { dispatchRenderComplete } from '../../../../../../kibana_utils/public' ;
29+ import { dispatchRenderComplete , url } from '../../../../../../kibana_utils/public' ;
3030import { DOC_HIDE_TIME_COLUMN_SETTING } from '../../../../../common' ;
3131import cellTemplateHtml from '../components/table_row/cell.html' ;
3232import truncateByHeightTemplateHtml from '../components/table_row/truncate_by_height.html' ;
@@ -119,16 +119,16 @@ export function createTableRowDirective($compile: ng.ICompileService) {
119119 const appFilters : any = getServices ( ) . filterManager . getAppFilters ( ) ;
120120
121121 const hash = stringify (
122- {
122+ url . encodeQuery ( {
123123 _g : rison . encode ( {
124124 filters : globalFilters || [ ] ,
125125 } ) ,
126126 _a : rison . encode ( {
127127 columns : $scope . columns ,
128128 filters : ( appFilters || [ ] ) . map ( esFilters . disableFilter ) ,
129129 } ) ,
130- } ,
131- { encode : false }
130+ } ) ,
131+ { encode : false , sort : false }
132132 ) ;
133133
134134 return `#/context/${ encodeURIComponent ( $scope . indexPattern . id ) } /${ encodeURIComponent (
You can’t perform that action at this time.
0 commit comments