File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -38,8 +38,10 @@ function Header() {
38
38
const greenlake = data ?. greenlake ?. edges ;
39
39
40
40
const GreenLakeButtonLinks = ( { column } ) => {
41
- const leftColumn = greenlake . filter ( ( gl , index ) => index % 2 === 0 ) ;
42
- const rightColumn = greenlake . filter ( ( gl , index ) => index % 2 ) ;
41
+ /* const leftColumn = greenlake.filter((gl, index) => index % 2 === 0); */
42
+ const leftColumn = greenlake ;
43
+ const rightColumn = greenlake . filter ( ( gl , index ) => index % 2 ) ;
44
+
43
45
const externalLinks = [
44
46
{
45
47
title : 'HPE GreenLake API Portal' ,
@@ -85,7 +87,7 @@ function Header() {
85
87
/>
86
88
) ;
87
89
} ) ;
88
- const allLinks = [ ...elColumns , ...glColumns ] ;
90
+ const allLinks = [ /* ...elColumns, */ ...glColumns ] ;
89
91
return allLinks ;
90
92
} ;
91
93
// const iframeRef = useRef();
@@ -203,9 +205,9 @@ function Header() {
203
205
< TextAlignLeft >
204
206
< GreenLakeButtonLinks column = "left" />
205
207
</ TextAlignLeft >
206
- < TextAlignLeft >
208
+ { /* <TextAlignLeft>
207
209
<GreenLakeButtonLinks column="right" />
208
- </ TextAlignLeft >
210
+ </TextAlignLeft> */ }
209
211
</ Box >
210
212
</ TextAlignLeft >
211
213
}
You can’t perform that action at this time.
0 commit comments