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
46e49809
Commit
46e49809
authored
Aug 02, 2019
by
GitLab Bot
Browse files
Options
Browse Files
Download
Plain Diff
Automatic merge of gitlab-org/gitlab-ce master
parents
11b00d09
3077c356
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
41 additions
and
12 deletions
+41
-12
app/assets/javascripts/jobs/components/sidebar.vue
app/assets/javascripts/jobs/components/sidebar.vue
+4
-5
changelogs/unreleased/59521-job-sidebar-has-a-blank-block.yml
...gelogs/unreleased/59521-job-sidebar-has-a-blank-block.yml
+5
-0
doc/user/project/integrations/jira_server_configuration.md
doc/user/project/integrations/jira_server_configuration.md
+2
-2
doc/workflow/shortcuts.md
doc/workflow/shortcuts.md
+5
-5
spec/javascripts/jobs/components/job_app_spec.js
spec/javascripts/jobs/components/job_app_spec.js
+25
-0
No files found.
app/assets/javascripts/jobs/components/sidebar.vue
View file @
46e49809
...
...
@@ -73,15 +73,14 @@ export default {
},
renderBlock
()
{
return
(
this
.
job
.
merge_request
||
this
.
job
.
duration
||
this
.
job
.
finished_
data
||
this
.
job
.
finished_
at
||
this
.
job
.
erased_at
||
this
.
job
.
queued
||
this
.
hasTimeout
||
this
.
job
.
runner
||
this
.
job
.
coverage
||
this
.
job
.
tags
.
length
||
this
.
job
.
cancel_path
this
.
job
.
tags
.
length
);
},
hasArtifact
()
{
...
...
@@ -160,7 +159,7 @@ export default {
</gl-link>
</div>
<div
:class=
"
{ block: renderBlock }
">
<div
v-if=
"renderBlock"
class=
"block
"
>
<detail-row
v-if=
"job.duration"
:value=
"duration"
...
...
changelogs/unreleased/59521-job-sidebar-has-a-blank-block.yml
0 → 100644
View file @
46e49809
---
title
:
Remove blank block from job sidebar
merge_request
:
30754
author
:
type
:
fixed
doc/user/project/integrations/jira_server_configuration.md
View file @
46e49809
...
...
@@ -3,8 +3,8 @@
We need to create a user in Jira which will have access to all projects that
need to integrate with GitLab.
As an example, we'll create a user named
`gitlab`
and add it to
the
`Jira-developers`
group
.
As an example, we'll create a user named
`gitlab`
and add it to
a new group
named
`gitlab-developers`
.
NOTE:
**Note**
It is important that the Jira user created for the integration is given 'write'
...
...
doc/workflow/shortcuts.md
View file @
46e49809
...
...
@@ -35,11 +35,11 @@ You can see GitLab's keyboard shortcuts by using <kbd>shift</kbd> + <kbd>?</kbd>
| Keyboard Shortcut | Description |
| ----------------- | ----------- |
|
<kbd>
g
</kbd>
+
<kbd>
a
</kbd>
| Go to the activity feed |
|
<kbd>
g
</kbd>
+
<kbd>
p
</kbd>
| Go to projects |
|
<kbd>
g
</kbd>
+
<kbd>
i
</kbd>
| Go to issues |
|
<kbd>
g
</kbd>
+
<kbd>
m
</kbd>
| Go to merge requests |
|
<kbd>
g
</kbd>
+
<kbd>
t
</kbd>
| Go to todos |
|
<kbd>
Shift
</kbd>
+
<kbd>
a
</kbd>
| Go to the activity feed |
|
<kbd>
Shift
</kbd>
+
<kbd>
p
</kbd>
| Go to projects |
|
<kbd>
Shift
</kbd>
+
<kbd>
i
</kbd>
| Go to issues |
|
<kbd>
Shift
</kbd>
+
<kbd>
m
</kbd>
| Go to merge requests |
|
<kbd>
Shift
</kbd>
+
<kbd>
t
</kbd>
| Go to todos |
## Project
...
...
spec/javascripts/jobs/components/job_app_spec.js
View file @
46e49809
...
...
@@ -486,6 +486,31 @@ describe('Job App ', () => {
});
});
});
describe
(
'
sidebar
'
,
()
=>
{
it
(
'
has no blank blocks
'
,
done
=>
{
mock
.
onGet
(
props
.
endpoint
).
replyOnce
(
200
,
Object
.
assign
({},
job
,
{
duration
:
null
,
finished_at
:
null
,
erased_at
:
null
,
queued
:
null
,
runner
:
null
,
coverage
:
null
,
tags
:
[],
cancel_path
:
null
,
}),
);
vm
.
$nextTick
(()
=>
{
vm
.
$el
.
querySelectorAll
(
'
.blocks-container > *
'
).
forEach
(
block
=>
{
expect
(
block
.
textContent
.
trim
()).
not
.
toBe
(
''
);
});
done
();
});
});
});
});
describe
(
'
archived job
'
,
()
=>
{
...
...
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