Skip to content
This repository was archived by the owner on May 4, 2022. It is now read-only.

Commit aacded7

Browse files
committed
style: remove space before function parens
appease eslint https://eslint.org/docs/rules/space-before-function-paren
1 parent 8eb2f38 commit aacded7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web/src/main/webapp/my-app/layout/services.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,7 @@ define(['angular', 'jquery'], function(angular, $) {
355355
'layout': [],
356356
};
357357
// Check if there are duplicate fnames in data.layout
358-
var filteredDataLayout = data.layout.filter(function (item, ind) {
358+
var filteredDataLayout = data.layout.filter(function(item, ind) {
359359
return data.layout.indexOf(item) == ind;
360360
});
361361

0 commit comments

Comments
 (0)