diff options
Diffstat (limited to 'server/sonar-web/src/main/js/helpers/handlebars/lt.js')
-rw-r--r-- | server/sonar-web/src/main/js/helpers/handlebars/lt.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/helpers/handlebars/lt.js b/server/sonar-web/src/main/js/helpers/handlebars/lt.js index 02166a34062..2aa609a9ee5 100644 --- a/server/sonar-web/src/main/js/helpers/handlebars/lt.js +++ b/server/sonar-web/src/main/js/helpers/handlebars/lt.js @@ -17,6 +17,6 @@ * 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 (v1, v2, options) { +module.exports = function(v1, v2, options) { return v1 < v2 ? options.fn(this) : options.inverse(this); }; |