Multiple image props on SDC are not supported in Canvas
>>> [!note] Migrated issue <!-- Drupal.org comment --> <!-- Migrated from issue #3551102. --> Reported by: [edwardsay](https://www.drupal.org/user/3514666) Related to !239 >>> <h3 id="overview">Overview</h3> <p>When having multiple image props in a single SDC component, only the last uploaded image is actually saved. The same bug is also happening when using an array prop for multiple images.</p> <p>Example of the props configuration:</p> <pre>props:<br>&nbsp; type: object<br>&nbsp; properties:<br>&nbsp;&nbsp;&nbsp; image_desktop:<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $ref: json-schema-definitions://canvas.module/image<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; type: object<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; title: Image Desktop<br>&nbsp;&nbsp;&nbsp; image_tablet:<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $ref: json-schema-definitions://canvas.module/image<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; type: object<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; title: Image Tablet<br>&nbsp;&nbsp;&nbsp; image_mobile:<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $ref: json-schema-definitions://canvas.module/image<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; type: object<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; title: Image Mobile</pre><p> OR</p> <pre>props:<br>&nbsp; type: object<br>&nbsp; properties:<br>&nbsp;&nbsp;&nbsp; images:<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; title: Images<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; type: array<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; items:<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $ref: json-schema-definitions://canvas.module/image<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; type: object</pre> > Related issue: [Issue #3546869](https://www.drupal.org/node/3546869) > Related issue: [Issue #3551665](https://www.drupal.org/node/3551665)
issue