Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
a1660302
Commit
a1660302
authored
Feb 12, 2020
by
Jose Vargas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Migrate underscore in the contributors folder
parent
e7f9dff2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
app/assets/javascripts/contributors/components/contributors.vue
...sets/javascripts/contributors/components/contributors.vue
+3
-3
No files found.
app/assets/javascripts/contributors/components/contributors.vue
View file @
a1660302
<
script
>
import
_
from
'
underscore
'
;
import
{
debounce
,
uniq
}
from
'
lodash
'
;
import
{
mapActions
,
mapState
,
mapGetters
}
from
'
vuex
'
;
import
{
GlLoadingIcon
}
from
'
@gitlab/ui
'
;
import
{
GlAreaChart
}
from
'
@gitlab/ui/dist/charts
'
;
...
...
@@ -120,7 +120,7 @@ export default {
return
this
.
xAxisRange
[
this
.
xAxisRange
.
length
-
1
];
},
charts
()
{
return
_
.
uniq
(
this
.
individualCharts
);
return
uniq
(
this
.
individualCharts
);
},
},
mounted
()
{
...
...
@@ -171,7 +171,7 @@ export default {
});
})
.
catch
(()
=>
{});
this
.
masterChart
.
on
(
'
datazoom
'
,
_
.
debounce
(
this
.
setIndividualChartsZoom
,
200
));
this
.
masterChart
.
on
(
'
datazoom
'
,
debounce
(
this
.
setIndividualChartsZoom
,
200
));
},
onIndividualChartCreated
(
chart
)
{
this
.
individualCharts
.
push
(
chart
);
...
...
Write
Preview
Markdown
is supported
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