fix: make the config isColumn false for all the filters (#5896)

This commit is contained in:
Vikrant Gupta 2024-09-09 15:39:55 +05:30 committed by GitHub
parent 3e32dabf46
commit 36adc17a34
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -31,7 +31,7 @@ export const LogsQuickFiltersConfig: IQuickFiltersConfig[] = [
key: 'severity_text', key: 'severity_text',
dataType: DataTypes.String, dataType: DataTypes.String,
type: '', type: '',
isColumn: true, isColumn: false,
isJSON: false, isJSON: false,
id: 'severity_text--string----true', id: 'severity_text--string----true',
}, },
@ -56,7 +56,7 @@ export const LogsQuickFiltersConfig: IQuickFiltersConfig[] = [
key: 'service.name', key: 'service.name',
dataType: DataTypes.String, dataType: DataTypes.String,
type: 'resource', type: 'resource',
isColumn: true, isColumn: false,
isJSON: false, isJSON: false,
id: 'service.name--string--resource--true', id: 'service.name--string--resource--true',
}, },
@ -105,7 +105,7 @@ export const LogsQuickFiltersConfig: IQuickFiltersConfig[] = [
key: 'k8s.namespace.name', key: 'k8s.namespace.name',
dataType: DataTypes.String, dataType: DataTypes.String,
type: 'resource', type: 'resource',
isColumn: true, isColumn: false,
isJSON: false, isJSON: false,
}, },
defaultOpen: false, defaultOpen: false,