소스 검색

displaying only first img in article linked materials as all but first image derivative are missing, still to fix

Bachir Soussi Chiadmi 4 년 전
부모
커밋
d7a701c8f5
2개의 변경된 파일6개의 추가작업 그리고 4개의 파일을 삭제
  1. 0 0
      web/themes/custom/materiotheme/assets/dist/main.js
  2. 6 4
      web/themes/custom/materiotheme/vuejs/components/Pages/Article.vue

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
web/themes/custom/materiotheme/assets/dist/main.js


+ 6 - 4
web/themes/custom/materiotheme/vuejs/components/Pages/Article.vue

@@ -226,10 +226,12 @@ export default {
                 field.images = [];
                 included.relationships.images.data.forEach((img) => {
                   // console.log('href', img.meta.imageDerivatives.links.card_medium.href);
-                  field.images.push({
-                    title:img.meta.title,
-                    url:img.meta.imageDerivatives.links.card_medium.href
-                  })
+                  if(img.meta.imageDerivatives){
+                    field.images.push({
+                      title:img.meta.title,
+                      url:img.meta.imageDerivatives.links.card_medium.href
+                    })
+                  }
                 })
                 break;
               case 'field_thesaurus':

이 변경점에서 너무 많은 파일들이 변경되어 몇몇 파일들은 표시되지 않았습니다.