mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-09-24 05:13:14 +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();
|
||||
};
|
||||
|
||||
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: ""
|
||||
},
|
||||
});
|
||||
};
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user