|
@@ -150,6 +150,7 @@ type BetterPriorityEndpointParams = Partial<EndpointParams> & {
|
|
issueHalflifeHours?: number;
|
|
issueHalflifeHours?: number;
|
|
logLevel?: number;
|
|
logLevel?: number;
|
|
norm?: boolean;
|
|
norm?: boolean;
|
|
|
|
+ relativeVolume?: number;
|
|
v2?: boolean;
|
|
v2?: boolean;
|
|
};
|
|
};
|
|
|
|
|
|
@@ -347,8 +348,15 @@ class IssueListOverview extends Component<Props, State> {
|
|
|
|
|
|
getBetterPriorityParams(): BetterPriorityEndpointParams {
|
|
getBetterPriorityParams(): BetterPriorityEndpointParams {
|
|
const query = this.props.location.query ?? {};
|
|
const query = this.props.location.query ?? {};
|
|
- const {eventHalflifeHours, hasStacktrace, issueHalflifeHours, logLevel, norm, v2} =
|
|
|
|
- query;
|
|
|
|
|
|
+ const {
|
|
|
|
+ eventHalflifeHours,
|
|
|
|
+ hasStacktrace,
|
|
|
|
+ issueHalflifeHours,
|
|
|
|
+ logLevel,
|
|
|
|
+ norm,
|
|
|
|
+ v2,
|
|
|
|
+ relativeVolume,
|
|
|
|
+ } = query;
|
|
|
|
|
|
return {
|
|
return {
|
|
eventHalflifeHours,
|
|
eventHalflifeHours,
|
|
@@ -357,6 +365,7 @@ class IssueListOverview extends Component<Props, State> {
|
|
logLevel,
|
|
logLevel,
|
|
norm,
|
|
norm,
|
|
v2,
|
|
v2,
|
|
|
|
+ relativeVolume,
|
|
};
|
|
};
|
|
}
|
|
}
|
|
|
|
|
|
@@ -889,6 +898,7 @@ class IssueListOverview extends Component<Props, State> {
|
|
issueHalflifeHours: 24 * 7,
|
|
issueHalflifeHours: 24 * 7,
|
|
v2: false,
|
|
v2: false,
|
|
norm: false,
|
|
norm: false,
|
|
|
|
+ relativeVolume: 1,
|
|
});
|
|
});
|
|
} else {
|
|
} else {
|
|
this.transitionTo({sort});
|
|
this.transitionTo({sort});
|