Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
publics
service-sdk-releases
Commits
5377325b
Commit
5377325b
authored
Aug 09, 2018
by
Andrew Zaytsev
🏀
Browse files
fix bug with call eventTabCallback
parent
97187805
Changes
1
Hide whitespace changes
Inline
Side-by-side
router/tab.js
View file @
5377325b
...
...
@@ -8,11 +8,11 @@ function* getProject() {
}
this
.
body
=
yield
this
.
config
.
projectTabCallback
(
this
.
state
.
instance
,
this
.
state
.
project
,
this
.
state
.
tabId
,
this
.
state
.
user
);
this
.
state
.
instance
,
this
.
state
.
project
,
this
.
state
.
tabId
,
this
.
state
.
user
,
);
}
function
*
getEvent
()
{
...
...
@@ -22,13 +22,13 @@ function* getEvent() {
return
;
}
this
.
body
=
yield
this
.
config
.
projec
tTabCallback
(
this
.
state
.
instance
,
this
.
state
.
project
,
this
.
state
.
eventId
,
this
.
state
.
tabId
,
this
.
state
.
user
);
this
.
body
=
yield
this
.
config
.
even
tTabCallback
(
this
.
state
.
instance
,
this
.
state
.
project
,
this
.
state
.
eventId
,
this
.
state
.
tabId
,
this
.
state
.
user
,
);
}
module
.
exports
=
{
getProject
,
getEvent
};
module
.
exports
=
{
getProject
,
getEvent
};
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment