mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-09-24 07:03:12 +08:00
Merge pull request #30 from himanshu-source21/ft-saas-opensource-parity-1
Fix latency initial values in traces page
This commit is contained in:
commit
4d431f0476
@ -232,10 +232,6 @@ const _TraceFilter = (props: TraceFilterProps) => {
|
|||||||
form.resetFields();
|
form.resetFields();
|
||||||
};
|
};
|
||||||
|
|
||||||
const onTagClose = (value: string) => {
|
|
||||||
setTagKeyValueApplied(tagKeyValueApplied.filter((e) => e !== value));
|
|
||||||
};
|
|
||||||
|
|
||||||
// For autocomplete
|
// For autocomplete
|
||||||
//Setting value when autocomplete field is changed
|
//Setting value when autocomplete field is changed
|
||||||
const onChangeTagKey = (data: string) => {
|
const onChangeTagKey = (data: string) => {
|
||||||
@ -290,7 +286,10 @@ const _TraceFilter = (props: TraceFilterProps) => {
|
|||||||
props.updateTraceFilters({
|
props.updateTraceFilters({
|
||||||
service: values.service,
|
service: values.service,
|
||||||
operation: values.operation,
|
operation: values.operation,
|
||||||
latency: latencyFilterValues,
|
latency: {
|
||||||
|
max: "",
|
||||||
|
min: ""
|
||||||
|
},
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user