aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/apps/project-admin/key
diff options
context:
space:
mode:
Diffstat (limited to 'server/sonar-web/src/main/js/apps/project-admin/key')
-rw-r--r--server/sonar-web/src/main/js/apps/project-admin/key/utils.js9
1 files changed, 3 insertions, 6 deletions
diff --git a/server/sonar-web/src/main/js/apps/project-admin/key/utils.js b/server/sonar-web/src/main/js/apps/project-admin/key/utils.js
index bc5f8221bcd..e2761221054 100644
--- a/server/sonar-web/src/main/js/apps/project-admin/key/utils.js
+++ b/server/sonar-web/src/main/js/apps/project-admin/key/utils.js
@@ -18,10 +18,7 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
export const reloadUpdateKeyPage = componentKey => {
- setTimeout(
- () => {
- window.location = window.baseUrl + '/project/key?id=' + encodeURIComponent(componentKey);
- },
- 3000
- );
+ setTimeout(() => {
+ window.location = window.baseUrl + '/project/key?id=' + encodeURIComponent(componentKey);
+ }, 3000);
};