Kaynağa Gözat

SONAR-19840 Ensure project activity takes branch into account

tags/10.2.0.77647
Philippe Perrin 9 ay önce
ebeveyn
işleme
071c352874

+ 4
- 1
server/sonar-web/src/main/js/apps/projectActivity/components/ProjectActivityApp.tsx Dosyayı Görüntüle

@@ -40,6 +40,7 @@ import { Location, Router, withRouter } from '../../../components/hoc/withRouter
import { getBranchLikeQuery } from '../../../helpers/branch-like';
import { parseDate } from '../../../helpers/dates';
import { serializeStringArray } from '../../../helpers/query';
import { withBranchLikes } from '../../../queries/branch';
import { BranchLike } from '../../../types/branch-like';
import { ComponentQualifier, isPortfolioLike } from '../../../types/component';
import { MetricKey } from '../../../types/metrics';
@@ -414,4 +415,6 @@ function RedirectWrapper(props: Props) {
return shouldRedirect ? null : <ProjectActivityApp {...props} />;
}

export default withComponentContext(withRouter(withMetricsContext(RedirectWrapper)));
export default withComponentContext(
withRouter(withMetricsContext(withBranchLikes(RedirectWrapper)))
);

Loading…
İptal
Kaydet