Skip to content

Commit d7c7a40

Browse files
authored
Merge pull request #7174 from layer5io/leecalcote/fix/integrations
fix: missing integration data
2 parents 376499d + 587fb66 commit d7c7a40

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

  • src/sections/Meshery/Meshery-integrations/Individual-Integrations

src/sections/Meshery/Meshery-integrations/Individual-Integrations/index.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,10 @@ import { ReactComponent as MesheryLogoBullet } from "../../../../assets/images/m
1515

1616
const IndividualIntegrations = ({ data, children }) => {
1717
const { frontmatter } = data.mdx;
18-
const screenshotNodes = data.allFile.nodes;
18+
const screenshotNodes = [
19+
...(data.screenshots_raster?.nodes || []),
20+
...(data.screenshots_svg?.nodes || []),
21+
];
1922
const finalScreenshots =
2023
screenshotNodes.length === 0 ? frontmatter.workingSlides : screenshotNodes;
2124
const awsIntegrations = [

0 commit comments

Comments
 (0)