mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-20 17:07:18 +00:00
feat: where clause key updates
This commit is contained in:
parent
48cdf439a9
commit
9010220b44
@ -127,6 +127,10 @@
|
|||||||
|
|
||||||
font-family: 'Space Mono', monospace !important;
|
font-family: 'Space Mono', monospace !important;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
background: var(--bg-ink-100) !important;
|
||||||
|
}
|
||||||
|
|
||||||
.cm-completionIcon {
|
.cm-completionIcon {
|
||||||
display: none !important;
|
display: none !important;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -779,10 +779,10 @@ function QuerySearch(): JSX.Element {
|
|||||||
// Add back the generateOptions function and useEffect
|
// Add back the generateOptions function and useEffect
|
||||||
const generateOptions = (data: any): any[] =>
|
const generateOptions = (data: any): any[] =>
|
||||||
Object.values(data.keys).flatMap((items: any) =>
|
Object.values(data.keys).flatMap((items: any) =>
|
||||||
items.map(({ name, fieldDataType, fieldContext }: any) => ({
|
items.map(({ name, fieldDataType }: any) => ({
|
||||||
label: name,
|
label: name,
|
||||||
type: fieldDataType === 'string' ? 'keyword' : fieldDataType,
|
type: fieldDataType === 'string' ? 'keyword' : fieldDataType,
|
||||||
info: fieldContext,
|
info: '',
|
||||||
details: '',
|
details: '',
|
||||||
})),
|
})),
|
||||||
);
|
);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user