mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
chore(loki-completions): remove odd string
This commit is contained in:
parent
7b9180c0a1
commit
dea9dc2f0f
@ -37,25 +37,25 @@ const afterSelectorCompletions = [
|
||||
{
|
||||
insertText: '|= "$0"',
|
||||
isSnippet: true,
|
||||
label: '|= "something"',
|
||||
label: '|= ""',
|
||||
type: 'LINE_FILTER',
|
||||
},
|
||||
{
|
||||
insertText: '!= "$0"',
|
||||
isSnippet: true,
|
||||
label: '!= "something"',
|
||||
label: '!= ""',
|
||||
type: 'LINE_FILTER',
|
||||
},
|
||||
{
|
||||
insertText: '|~ "$0"',
|
||||
isSnippet: true,
|
||||
label: '|~ "something"',
|
||||
label: '|~ ""',
|
||||
type: 'LINE_FILTER',
|
||||
},
|
||||
{
|
||||
insertText: '!~ "$0"',
|
||||
isSnippet: true,
|
||||
label: '!~ "something"',
|
||||
label: '!~ ""',
|
||||
type: 'LINE_FILTER',
|
||||
},
|
||||
{
|
||||
|
@ -73,7 +73,7 @@ const DURATION_COMPLETIONS: Completion[] = [
|
||||
|
||||
const LINE_FILTER_COMPLETIONS: Completion[] = ['|=', '!=', '|~', '!~'].map((item) => ({
|
||||
type: 'LINE_FILTER',
|
||||
label: `${item} "something"`,
|
||||
label: `${item} ""`,
|
||||
insertText: `${item} "$0"`,
|
||||
isSnippet: true,
|
||||
}));
|
||||
|
Loading…
Reference in New Issue
Block a user