Skip to content

Commit

Permalink
fix: 修复指标回填没有result_table_id被过滤不传参问题
Browse files Browse the repository at this point in the history
  • Loading branch information
liangling0628 committed Oct 28, 2023
1 parent a85e446 commit 70f6031
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -200,13 +200,13 @@ export default class MonitorQueryEditor extends React.PureComponent<IQueryEditor
},
{
key: 'result_table_id',
value: item.result_table_id || undefined,
value: item.result_table_id || '',
},
{
key: 'metric_field',
value: item.metric_field,
},
].filter(item => item.value),
].filter(item => typeof item.value !== 'undefined'),
page: 1,
page_size: 1,
})
Expand Down

0 comments on commit 70f6031

Please sign in to comment.