Skip to content

Commit

Permalink
fix: make the config isColumn false for all the filters (#5896)
Browse files Browse the repository at this point in the history
  • Loading branch information
vikrantgupta25 authored Sep 9, 2024
1 parent 3e32dab commit 36adc17
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions frontend/src/pages/LogsExplorer/utils.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export const LogsQuickFiltersConfig: IQuickFiltersConfig[] = [
key: 'severity_text',
dataType: DataTypes.String,
type: '',
isColumn: true,
isColumn: false,
isJSON: false,
id: 'severity_text--string----true',
},
Expand All @@ -56,7 +56,7 @@ export const LogsQuickFiltersConfig: IQuickFiltersConfig[] = [
key: 'service.name',
dataType: DataTypes.String,
type: 'resource',
isColumn: true,
isColumn: false,
isJSON: false,
id: 'service.name--string--resource--true',
},
Expand Down Expand Up @@ -105,7 +105,7 @@ export const LogsQuickFiltersConfig: IQuickFiltersConfig[] = [
key: 'k8s.namespace.name',
dataType: DataTypes.String,
type: 'resource',
isColumn: true,
isColumn: false,
isJSON: false,
},
defaultOpen: false,
Expand Down

0 comments on commit 36adc17

Please sign in to comment.