diff options
Diffstat (limited to 'server/sonar-web/src/main/js/helpers/handlebars/ifMeasureShouldBeShown.js')
-rw-r--r-- | server/sonar-web/src/main/js/helpers/handlebars/ifMeasureShouldBeShown.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/helpers/handlebars/ifMeasureShouldBeShown.js b/server/sonar-web/src/main/js/helpers/handlebars/ifMeasureShouldBeShown.js index 76daf8434c8..ba482982a56 100644 --- a/server/sonar-web/src/main/js/helpers/handlebars/ifMeasureShouldBeShown.js +++ b/server/sonar-web/src/main/js/helpers/handlebars/ifMeasureShouldBeShown.js @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ -module.exports = function (measure, period, options) { +module.exports = function(measure, period, options) { if (measure != null || period != null) { return options.fn(this); } else { |