BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
83ab63de
Unverified
Commit
83ab63de
authored
Jan 17, 2018
by
Phil Hughes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed conflicts
parent
3f2df9c3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
44 deletions
+17
-44
key.vue
app/assets/javascripts/deploy_keys/components/key.vue
+4
-19
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
,
{
allowedTags
:
sanitize
.
defaults
.
allowedTags
.
concat
([
'img'
,
'svg'
,
]),
allowedAttributes
:
{
img
:
[
'src'
],
},
});
computed
:
{
sanitizedOutput
()
{
return
sanitize
(
this
.
rawCode
,
{
allowedTags
:
sanitize
.
defaults
.
allowedTags
.
concat
([
'img'
,
'svg'
,
]),
allowedAttributes
:
{
img
:
[
'src'
],
},
});
},
},
},
};
>>>>>>>
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