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
e7916e10
Commit
e7916e10
authored
Dec 10, 2020
by
Jose Vargas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add skeleton loader to Analytics -> CI/CD page
parent
0c7f16fd
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
app/assets/javascripts/projects/pipelines/charts/components/app.vue
.../javascripts/projects/pipelines/charts/components/app.vue
+4
-2
No files found.
app/assets/javascripts/projects/pipelines/charts/components/app.vue
View file @
e7916e10
<
script
>
<
script
>
import
dateFormat
from
'
dateformat
'
;
import
dateFormat
from
'
dateformat
'
;
import
{
GlColumnChart
}
from
'
@gitlab/ui/dist/charts
'
;
import
{
GlColumnChart
}
from
'
@gitlab/ui/dist/charts
'
;
import
{
GlAlert
}
from
'
@gitlab/ui
'
;
import
{
GlAlert
,
GlSkeletonLoader
}
from
'
@gitlab/ui
'
;
import
{
__
,
s__
,
sprintf
}
from
'
~/locale
'
;
import
{
__
,
s__
,
sprintf
}
from
'
~/locale
'
;
import
{
getDateInPast
}
from
'
~/lib/utils/datetime_utility
'
;
import
{
getDateInPast
}
from
'
~/lib/utils/datetime_utility
'
;
import
getPipelineCountByStatus
from
'
../graphql/queries/get_pipeline_count_by_status.query.graphql
'
;
import
getPipelineCountByStatus
from
'
../graphql/queries/get_pipeline_count_by_status.query.graphql
'
;
...
@@ -50,6 +50,7 @@ export default {
...
@@ -50,6 +50,7 @@ export default {
components
:
{
components
:
{
GlAlert
,
GlAlert
,
GlColumnChart
,
GlColumnChart
,
GlSkeletonLoader
,
StatisticsList
,
StatisticsList
,
PipelinesAreaChart
,
PipelinesAreaChart
,
},
},
...
@@ -278,7 +279,8 @@ export default {
...
@@ -278,7 +279,8 @@ export default {
<h4
class=
"gl-my-4"
>
{{
s__
(
'
PipelineCharts|Overall statistics
'
)
}}
</h4>
<h4
class=
"gl-my-4"
>
{{
s__
(
'
PipelineCharts|Overall statistics
'
)
}}
</h4>
<div
class=
"row"
>
<div
class=
"row"
>
<div
class=
"col-md-6"
>
<div
class=
"col-md-6"
>
<statistics-list
:counts=
"formattedCounts"
/>
<gl-skeleton-loader
v-if=
"$apollo.queries.counts.loading"
:lines=
"5"
/>
<statistics-list
v-else
:counts=
"formattedCounts"
/>
</div>
</div>
<div
class=
"col-md-6"
>
<div
class=
"col-md-6"
>
<strong>
<strong>
...
...
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