Merge pull request #30 from himanshu-source21/ft-saas-opensource-parity-1

Fix latency initial values in traces page
This commit is contained in:
Ankit Nayan 2021-02-24 11:05:59 +05:30 committed by GitHub
commit 4d431f0476
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -232,10 +232,6 @@ const _TraceFilter = (props: TraceFilterProps) => {
form.resetFields();
};
const onTagClose = (value: string) => {
setTagKeyValueApplied(tagKeyValueApplied.filter((e) => e !== value));
};
// For autocomplete
//Setting value when autocomplete field is changed
const onChangeTagKey = (data: string) => {
@ -290,7 +286,10 @@ const _TraceFilter = (props: TraceFilterProps) => {
props.updateTraceFilters({
service: values.service,
operation: values.operation,
latency: latencyFilterValues,
latency: {
max: "",
min: ""
},
});
};