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
0
Merge Requests
0
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
Boxiang Sun
gitlab-ce
Commits
83ab63de
Commit
83ab63de
authored
Jan 17, 2018
by
Phil Hughes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed conflicts
parent
3f2df9c3
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
44 deletions
+17
-44
app/assets/javascripts/deploy_keys/components/key.vue
app/assets/javascripts/deploy_keys/components/key.vue
+4
-19
app/assets/javascripts/notebook/cells/output/html.vue
app/assets/javascripts/notebook/cells/output/html.vue
+13
-25
No files found.
app/assets/javascripts/deploy_keys/components/key.vue
View file @
83ab63de
<
script
>
import
actionBtn
from
'
./action_btn.vue
'
;
<<<<<<<
HEAD
import
{
getTimeago
}
from
'
../../lib/utils/datetime_utility
'
;
=======
import
tooltip
from
'
../../vue_shared/directives/tooltip
'
;
>>>>>>>
Merge
branch
'
sh-migrate-can-push-to-deploy-keys-projects-10-3
'
into
'
security-10-3
'
export
default
{
components
:
{
actionBtn
,
},
directives
:
{
tooltip
,
},
props
:
{
deployKey
:
{
type
:
Object
,
...
...
@@ -24,15 +24,6 @@
required
:
true
,
},
},
<<<<<<<
HEAD
=======
directives
:
{
tooltip
,
},
components
:
{
actionBtn
,
},
>>>>>>>
Merge
branch
'
sh-migrate-can-push-to-deploy-keys-projects-10-3
'
into
'
security-10-3
'
computed
:
{
timeagoDate
()
{
return
getTimeago
().
format
(
this
.
deployKey
.
created_at
);
...
...
@@ -71,18 +62,12 @@
</div>
<div
class=
"deploy-key-content prepend-left-default deploy-key-projects"
>
<a
<<<<<<<
HEAD
v-for=
"(project, i) in deployKey.projects"
class=
"label deploy-project-label"
:href=
"project.full_path"
v-for=
"(deployKeysProject, i) in deployKey.deploy_keys_projects"
:key=
"i"
=======
v-for=
"deployKeysProject in deployKey.deploy_keys_projects"
class=
"label deploy-project-label"
:href=
"deployKeysProject.project.full_path"
:title=
"tooltipTitle(deployKeysProject)"
v-tooltip
>
>>>>>> Merge branch 'sh-migrate-can-push-to-deploy-keys-projects-10-3' into 'security-10-3'
>
{{
deployKeysProject
.
project
.
full_name
}}
<i
...
...
app/assets/javascripts/notebook/cells/output/html.vue
View file @
83ab63de
<
script
>
<<<<<<<
HEAD
import
sanitize
from
'
sanitize-html
'
;
import
Prompt
from
'
../prompt.vue
'
;
=======
import
sanitize
from
'
sanitize-html
'
;
import
Prompt
from
'
../prompt.vue
'
;
>>>>>>>
Merge
branch
'
fl-ipythin-10-3
'
into
'
security-10-3
'
export
default
{
components
:
{
prompt
:
Prompt
,
},
<<<<<<<
HEAD
props
:
{
rawCode
:
{
type
:
String
,
required
:
true
,
},
},
};
=======
},
components
:
{
prompt
:
Prompt
,
},
computed
:
{
sanitizedOutput
()
{
return
sanitize
(
this
.
rawCode
,
{
...
...
@@ -35,8 +24,7 @@ import Prompt from '../prompt.vue';
});
},
},
};
>>>>>>>
Merge
branch
'
fl-ipythin-10-3
'
into
'
security-10-3
'
};
</
script
>
<
template
>
...
...
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