File tree Expand file tree Collapse file tree 1 file changed +4
-10
lines changed
extensions/ql-vscode/src/query-history Expand file tree Collapse file tree 1 file changed +4
-10
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,10 @@ import type { QueryRunner } from "../query-server";
51
51
import type { VariantAnalysisManager } from "../variant-analysis/variant-analysis-manager" ;
52
52
import type { VariantAnalysisHistoryItem } from "./variant-analysis-history-item" ;
53
53
import { getTotalResultCount } from "../variant-analysis/shared/variant-analysis" ;
54
- import { HistoryTreeDataProvider } from "./history-tree-data-provider" ;
54
+ import {
55
+ HistoryTreeDataProvider ,
56
+ SortOrder ,
57
+ } from "./history-tree-data-provider" ;
55
58
import type { QueryHistoryDirs } from "./query-history-dirs" ;
56
59
import type { QueryHistoryCommands } from "../common/commands" ;
57
60
import type { App } from "../common/app" ;
@@ -98,15 +101,6 @@ const SHOW_QUERY_TEXT_QUICK_EVAL_MSG = `\
98
101
99
102
` ;
100
103
101
- enum SortOrder {
102
- NameAsc = "NameAsc" ,
103
- NameDesc = "NameDesc" ,
104
- DateAsc = "DateAsc" ,
105
- DateDesc = "DateDesc" ,
106
- CountAsc = "CountAsc" ,
107
- CountDesc = "CountDesc" ,
108
- }
109
-
110
104
/**
111
105
* Number of milliseconds two clicks have to arrive apart to be
112
106
* considered a double-click.
You can’t perform that action at this time.
0 commit comments