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
daadea0d
Commit
daadea0d
authored
Jan 08, 2018
by
Kushal Pandya
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
GeoNodesList Component
parent
8a2b7413
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
36 additions
and
0 deletions
+36
-0
ee/app/assets/javascripts/geo_nodes/components/geo_nodes_list.vue
...ssets/javascripts/geo_nodes/components/geo_nodes_list.vue
+36
-0
No files found.
ee/app/assets/javascripts/geo_nodes/components/geo_nodes_list.vue
0 → 100644
View file @
daadea0d
<
script
>
import
geoNodeItem
from
'
./geo_node_item.vue
'
;
export
default
{
components
:
{
geoNodeItem
,
},
props
:
{
nodes
:
{
type
:
Array
,
required
:
true
,
},
nodeActionsAllowed
:
{
type
:
Boolean
,
required
:
true
,
},
nodeEditAllowed
:
{
type
:
Boolean
,
required
:
true
,
},
},
};
</
script
>
<
template
>
<ul
class=
"well-list geo-nodes"
>
<geo-node-item
v-for=
"(node, index) in nodes"
:key=
"index"
:node=
"node"
:primary-node=
"node.primary"
:node-actions-allowed=
"nodeActionsAllowed"
:node-edit-allowed=
"nodeEditAllowed"
/>
</ul>
</
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