We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 376499d commit 587fb66Copy full SHA for 587fb66
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