Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
小 白蛋
Scope
Commits
90d0e79e
Commit
90d0e79e
authored
7 years ago
by
Roland Schilter
Committed by
GitHub
7 years ago
Browse files
Options
Download
Email Patches
Plain Diff
Remove whitespace from empty connection lists (#2811)
parent
c288d8c2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
client/app/scripts/components/node-details.js
+2
-2
client/app/scripts/components/node-details.js
with
2 additions
and
2 deletions
+2
-2
client/app/scripts/components/node-details.js
+
2
-
2
View file @
90d0e79e
...
...
@@ -206,8 +206,8 @@ class NodeDetails extends React.Component {
<
NodeDetailsInfo
rows
=
{
details
.
metadata
}
matches
=
{
nodeMatches
.
get
(
'
metadata
'
)}
/
>
<
/div>
}
{
details
.
connections
&&
details
.
connections
.
map
(
connections
=>
(
<
div
className
=
"
node-details-content-section
"
key
=
{
connections
.
id
}
>
{
details
.
connections
&&
details
.
connections
.
filter
(
cs
=>
cs
.
connections
.
length
>
0
)
.
map
(
connections
=>
(
<
div
className
=
"
node-details-content-section
"
key
=
{
connections
.
id
}
>
<
NodeDetailsTable
{...
connections
}
nodes
=
{
connections
.
connections
}
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
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