From 912be3d929359d3de7acd687356c82c395cc8f84 Mon Sep 17 00:00:00 2001 From: Stas Vilchik Date: Tue, 3 Oct 2017 11:18:52 +0200 Subject: [PATCH] invalidate browser cache for logo --- .../src/main/js/app/components/nav/global/GlobalNavBranding.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/sonar-web/src/main/js/app/components/nav/global/GlobalNavBranding.js b/server/sonar-web/src/main/js/app/components/nav/global/GlobalNavBranding.js index e3e3fb241d6..e7b4cae4816 100644 --- a/server/sonar-web/src/main/js/app/components/nav/global/GlobalNavBranding.js +++ b/server/sonar-web/src/main/js/app/components/nav/global/GlobalNavBranding.js @@ -31,7 +31,7 @@ class GlobalNavBranding extends React.PureComponent { }; renderLogo() { - const url = this.props.customLogoUrl || `${window.baseUrl}/images/logo.svg`; + const url = this.props.customLogoUrl || `${window.baseUrl}/images/logo.svg?v=6.6`; const width = this.props.customLogoUrl ? this.props.customLogoWidth || 100 : 83; const height = 30; const title = translate('layout.sonar.slogan'); -- 2.39.5