We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 376499d + 587fb66 commit d7c7a40Copy full SHA for d7c7a40
1 file changed
src/sections/Meshery/Meshery-integrations/Individual-Integrations/index.js
@@ -15,7 +15,10 @@ import { ReactComponent as MesheryLogoBullet } from "../../../../assets/images/m
15
16
const IndividualIntegrations = ({ data, children }) => {
17
const { frontmatter } = data.mdx;
18
- const screenshotNodes = data.allFile.nodes;
+ const screenshotNodes = [
19
+ ...(data.screenshots_raster?.nodes || []),
20
+ ...(data.screenshots_svg?.nodes || []),
21
+ ];
22
const finalScreenshots =
23
screenshotNodes.length === 0 ? frontmatter.workingSlides : screenshotNodes;
24
const awsIntegrations = [
0 commit comments