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
Tatuya Kamada
gitlab-ce
Commits
c28df601
Commit
c28df601
authored
Oct 20, 2016
by
Filipa Lacerda
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adds build column
parent
4508f85a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
7 deletions
+5
-7
app/views/projects/environments/components/_environment.html.haml
...s/projects/environments/components/_environment.html.haml
+5
-7
No files found.
app/views/projects/environments/components/_environment.html.haml
View file @
c28df601
...
...
@@ -29,9 +29,8 @@
width:
20
,
height:
20
}
%td
%a
{
"v-if"
=>
"!isFolder && model.last_deployment && model.last_deployment.deployable"
,
":class"
=>
"build-link"
,
":href"
=>
""
}
%a
.build-link
{
"v-if"
=>
"!isFolder && model.last_deployment && model.last_deployment.deployable"
,
":href"
=>
"'#{namespace_project_builds_path(@project.namespace, @project)}/' + model.last_deployment.deployable.id"
}
{{model.last_deployment.deployable.name}} (## {{model.last_deployment.deployable.id}})
%td
...
...
@@ -75,10 +74,9 @@
width:
20
,
height:
20
}
%td
%a
{
"v-if"
=>
" child.last_deployment && child.last_deployment.deployable"
,
":class"
=>
"build-link"
,
":href"
=>
""
}
{{chil.last_deployment.deployable.name}} (## {{child.last_deployment.deployable.id}})
%a
.build-link
{
"v-if"
=>
"child.last_deployment && child.last_deployment.deployable"
,
":href"
=>
"'#{namespace_project_builds_path(@project.namespace, @project)}/' + child.last_deployment.deployable.id"
}
{{child.last_deployment.deployable.name}} (## {{child.last_deployment.deployable.id}})
%td
%a
{
"v-if"
=>
"child.last_deployment"
}
...
...
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