diff options
Diffstat (limited to 'server/sonar-web/src/main/js/helpers/handlebars/notEq.js')
-rw-r--r-- | server/sonar-web/src/main/js/helpers/handlebars/notEq.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/helpers/handlebars/notEq.js b/server/sonar-web/src/main/js/helpers/handlebars/notEq.js index e4d4e1ea6d2..18e0be28841 100644 --- a/server/sonar-web/src/main/js/helpers/handlebars/notEq.js +++ b/server/sonar-web/src/main/js/helpers/handlebars/notEq.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 (v1, v2, options) { +module.exports = function(v1, v2, options) { /* eslint eqeqeq: 0 */ return v1 != v2 ? options.fn(this) : options.inverse(this); }; |