Skip to content

Commit 2b4484c

Browse files
committed
#1934-issue-fixed
1 parent 8e8ac75 commit 2b4484c

File tree

3 files changed

+14
-12
lines changed

3 files changed

+14
-12
lines changed

src/components/Header/index.js

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -41,16 +41,16 @@ function Header() {
4141
/* const leftColumn = greenlake.filter((gl, index) => index % 2 === 0); */
4242
const leftColumn = greenlake;
4343
const rightColumn = greenlake.filter((gl, index) => index % 2);
44-
const externalLinks = [
45-
{
46-
title: 'HPE GreenLake API Portal',
47-
slug: 'https://developer.greenlake.hpe.com/',
48-
},
49-
{
50-
title: 'HPE GreenLake Test Drive',
51-
slug: 'https://testdrive.greenlake.hpe.com/',
52-
},
53-
];
44+
// const externalLinks = [
45+
// {
46+
// title: 'HPE GreenLake API Portal',
47+
// slug: 'https://developer.greenlake.hpe.com/',
48+
// },
49+
// {
50+
// title: 'HPE GreenLake Test Drive',
51+
// slug: 'https://testdrive.greenlake.hpe.com/',
52+
// },
53+
// ];
5454

5555
// const externalLeftColumn = externalLinks.filter(
5656
// (el, index) => index % 2 === 0,

src/pages/slack-signup/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ export default function Slacksignup() {
175175
borderRadius: '100px',
176176
color: '#ffffff',
177177
width: '250px',
178-
position: 'relative',
178+
position: 'relative',
179179
height: '40px',
180180
}}
181181
/>

src/templates/tags.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,9 @@ export const pageQuery = graphql`
112112
allMarkdownRemark(
113113
limit: 2000
114114
sort: { fields: [frontmatter___date], order: DESC }
115-
filter: { frontmatter: { tags: { regex: $tagRE } } }
115+
filter: {
116+
frontmatter: { tags: { regex: $tagRE }, disbale: { ne: true } }
117+
}
116118
) {
117119
totalCount
118120
edges {

0 commit comments

Comments
 (0)