Skip to content

Commit 44bd593

Browse files
benvinegarmattrobenolt
authored andcommitted
Merge pull request #2586 from getsentry/fix-bulk-merge-del
Fix bulk merge + delete
1 parent 4e2274d commit 44bd593

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/sentry/static/sentry/app/views/stream/actions.jsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,8 @@ const StreamActions = React.createClass({
9595
this.api.bulkDelete({
9696
orgId: this.props.orgId,
9797
projectId: this.props.projectId,
98-
itemIds: itemIds
98+
itemIds: itemIds,
99+
query: this.props.query
99100
}, {
100101
complete: () => {
101102
IndicatorStore.remove(loadingIndicator);
@@ -112,6 +113,7 @@ const StreamActions = React.createClass({
112113
orgId: this.props.orgId,
113114
projectId: this.props.projectId,
114115
itemIds: itemIds,
116+
query: this.props.query
115117
}, {
116118
complete: () => {
117119
IndicatorStore.remove(loadingIndicator);

0 commit comments

Comments
 (0)