aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web
diff options
context:
space:
mode:
authorStas Vilchik <vilchiks@gmail.com>2016-01-07 09:32:28 +0100
committerStas Vilchik <vilchiks@gmail.com>2016-01-07 09:32:28 +0100
commit645cbc16888fe7553c92aee4a2a14e34872f72b1 (patch)
treec6cc3b67093bfec60d29cf33e48d5f5012cd5f97 /server/sonar-web
parenta86c930b9b307bb159f293a30e54515fc8d3e305 (diff)
downloadsonarqube-645cbc16888fe7553c92aee4a2a14e34872f72b1.tar.gz
sonarqube-645cbc16888fe7553c92aee4a2a14e34872f72b1.zip
fix path helper
Diffstat (limited to 'server/sonar-web')
-rw-r--r--server/sonar-web/src/main/js/helpers/handlebars/fileFromPath.js2
1 files changed, 1 insertions, 1 deletions
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);
};