mirror of
https://github.com/grafana/grafana.git
synced 2026-08-14 07:04:57 -05:00
Chore: comment line filters pending implementation
It's breaking the build due to a linting error.
This commit is contained in:
+2
-2
@@ -63,12 +63,12 @@ const DURATION_COMPLETIONS: Completion[] = ['$__interval', '$__range', '1m', '5m
|
||||
})
|
||||
);
|
||||
|
||||
const LINE_FILTER_COMPLETIONS: Completion[] = ['|=', '!=', '|~', '!~'].map((item) => ({
|
||||
/*TODO: Implement. const LINE_FILTER_COMPLETIONS: Completion[] = ['|=', '!=', '|~', '!~'].map((item) => ({
|
||||
type: 'LINE_FILTER',
|
||||
label: `${item} ""`,
|
||||
insertText: `${item} "$0"`,
|
||||
isSnippet: true,
|
||||
}));
|
||||
}));*/
|
||||
|
||||
async function getAllHistoryCompletions(dataProvider: CompletionDataProvider): Promise<Completion[]> {
|
||||
const history = await dataProvider.getHistory();
|
||||
|
||||
Reference in New Issue
Block a user