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