From: Stas Vilchik Date: Thu, 7 Jan 2016 08:32:28 +0000 (+0100) Subject: fix path helper X-Git-Tag: 5.4-M4~24 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=645cbc16888fe7553c92aee4a2a14e34872f72b1;p=sonarqube.git fix path helper --- diff --git a/server/sonar-web/src/main/js/helpers/handlebars/fileFromPath.js b/server/sonar-web/src/main/js/helpers/handlebars/fileFromPath.js index 7da656f0cd8..5ddd7fe83b0 100644 --- a/server/sonar-web/src/main/js/helpers/handlebars/fileFromPath.js +++ b/server/sonar-web/src/main/js/helpers/handlebars/fileFromPath.js @@ -20,5 +20,5 @@ import { fileFromPath } from '../path'; module.exports = function (path) { - return window.fileFromPath(path); + return fileFromPath(path); };