From 77ab97f8cbb6fa7b4d81f834598a17ea87dd7463 Mon Sep 17 00:00:00 2001 From: Evan Purkhiser Date: Fri, 10 Jul 2020 01:37:14 -0700 Subject: [PATCH] fix(ui): Do not indicate 'page reload' on project create I had originally fixed the same problem in [0] and then looks like it was refactored in [1], without the `silent` flag that I had introduced [2] for trialing [0]: https://github.com/getsentry/sentry/pull/12842 [1]: https://github.com/getsentry/sentry/commit/7ff0f571ee049019b06bdd208f7b50f7e9bc1d1c#diff-b53a62e33ed69961e43e0cc24634616eR101 [2]: https://github.com/getsentry/sentry/pull/15165 --- src/sentry/static/sentry/app/views/organizationContext.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sentry/static/sentry/app/views/organizationContext.jsx b/src/sentry/static/sentry/app/views/organizationContext.jsx index 78dc9555862a..e3c26e26889d 100644 --- a/src/sentry/static/sentry/app/views/organizationContext.jsx +++ b/src/sentry/static/sentry/app/views/organizationContext.jsx @@ -112,7 +112,7 @@ const OrganizationContext = createReactClass({ // If a new project was created, we need to re-fetch the // org details endpoint, which will propagate re-rendering // for the entire component tree - fetchOrganizationDetails(this.props.api, this.getOrganizationSlug(), true); + fetchOrganizationDetails(this.props.api, this.getOrganizationSlug(), true, true); }, getOrganizationSlug() {