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
eddd5e0b
Commit
eddd5e0b
authored
Aug 02, 2021
by
Jose Vargas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Address code style concerns
parent
12e82066
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
ee/app/assets/javascripts/ci_minutes_usage/components/app.vue
...pp/assets/javascripts/ci_minutes_usage/components/app.vue
+1
-1
ee/app/assets/javascripts/ci_minutes_usage/components/minutes_usage_project_chart.vue
..._minutes_usage/components/minutes_usage_project_chart.vue
+1
-1
No files found.
ee/app/assets/javascripts/ci_minutes_usage/components/app.vue
View file @
eddd5e0b
...
...
@@ -23,7 +23,7 @@ export default {
},
computed
:
{
minutesUsageDataByMonth
()
{
return
this
?
.
ciMinutesUsage
.
map
((
cur
)
=>
[
cur
.
month
,
cur
.
minutes
]);
return
this
.
ciMinutesUsage
.
map
((
cur
)
=>
[
cur
.
month
,
cur
.
minutes
]);
},
},
};
...
...
ee/app/assets/javascripts/ci_minutes_usage/components/minutes_usage_project_chart.vue
View file @
eddd5e0b
...
...
@@ -83,7 +83,7 @@ export default {
v-for=
"(month, index) in months"
:key=
"index"
:is-checked=
"selectedMonth === month"
:is-check-item=
"true"
is-check-item
@
click=
"changeSelectedMonth(month)"
>
{{
month
}}
...
...
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