File tree Expand file tree Collapse file tree 1 file changed +1
-6
lines changed
src/platform/packages/shared/kbn-es-query-server/src/filter Expand file tree Collapse file tree 1 file changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -69,11 +69,6 @@ export const filterValueSchema = schema.oneOf(
6969 * Base properties shared by all simplified filters
7070 */
7171const baseFilterPropertiesSchema = {
72- id : schema . maybe (
73- schema . string ( {
74- meta : { description : 'Unique identifier for the filter' } ,
75- } )
76- ) ,
7772 pinned : schema . maybe (
7873 schema . boolean ( {
7974 meta : { description : 'Whether the filter is pinned' } ,
@@ -89,7 +84,7 @@ const baseFilterPropertiesSchema = {
8984 meta : { description : 'Owner that manages this filter' } ,
9085 } )
9186 ) ,
92- indexPattern : schema . maybe (
87+ dataViewId : schema . maybe (
9388 schema . string ( {
9489 meta : { description : 'Data view ID that this filter applies to' } ,
9590 } )
You can’t perform that action at this time.
0 commit comments