Skip to content

Commit bfdc08d

Browse files
authored
Fix traceIDs query params clobbering form search (jaegertracing#83)
Signed-off-by: vvvprabhakar <vvvprabhakar@gmail.com>
1 parent 7ec5120 commit bfdc08d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/components/SearchTracePage/TraceSearchForm.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -285,8 +285,8 @@ const mapDispatchToProps = dispatch => {
285285
minDuration,
286286
maxDuration,
287287
lookback,
288-
traceIDs,
289288
} = fields;
289+
// Note: traceID is ignored when the form is submitted
290290

291291
store.set('lastSearch', { service, operation });
292292

@@ -317,7 +317,6 @@ const mapDispatchToProps = dispatch => {
317317
tag: tagsToQuery(tags) || undefined,
318318
minDuration: minDuration || null,
319319
maxDuration: maxDuration || null,
320-
traceID: traceIDsToQuery(traceIDs) || undefined,
321320
});
322321
},
323322
};

0 commit comments

Comments
 (0)