Repository: ignite
Updated Branches:
refs/heads/master 8f52344bf -> da379555f
IGNITE-9371 Web Console: Fixed ActivitiesUserDialog by replacing arrow function
with regular function.
You can't new an arrow function.
Project: http://git-wip-us.apache.org/repos/asf/ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/da379555
Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/da379555
Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/da379555
Branch: refs/heads/master
Commit: da379555fd00829f1503f06623496787049898ff
Parents: 8f52344
Author: Ilya Borisov <[email protected]>
Authored: Wed Sep 12 10:59:24 2018 +0700
Committer: Alexey Kuznetsov <[email protected]>
Committed: Wed Sep 12 10:59:24 2018 +0700
----------------------------------------------------------------------
.../frontend/app/components/activities-user-dialog/index.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------
http://git-wip-us.apache.org/repos/asf/ignite/blob/da379555/modules/web-console/frontend/app/components/activities-user-dialog/index.js
----------------------------------------------------------------------
diff --git
a/modules/web-console/frontend/app/components/activities-user-dialog/index.js
b/modules/web-console/frontend/app/components/activities-user-dialog/index.js
index 673c3cc..ab3acbb 100644
---
a/modules/web-console/frontend/app/components/activities-user-dialog/index.js
+++
b/modules/web-console/frontend/app/components/activities-user-dialog/index.js
@@ -19,7 +19,7 @@ import controller from './activities-user-dialog.controller';
import templateUrl from './activities-user-dialog.tpl.pug';
export default ['$modal', function($modal) {
- return ({ show = true, user }) => {
+ return function({ show = true, user }) {
const ActivitiesUserDialog = $modal({
templateUrl,
show,