diff --git a/webapp/portlet/src/main/webapp/skin/less/portlet/ActivityStream/Style.less b/webapp/portlet/src/main/webapp/skin/less/portlet/ActivityStream/Style.less index b9a500034fc..c176f68b694 100644 --- a/webapp/portlet/src/main/webapp/skin/less/portlet/ActivityStream/Style.less +++ b/webapp/portlet/src/main/webapp/skin/less/portlet/ActivityStream/Style.less @@ -256,6 +256,6 @@ } } #ActivityStream .activity-thumbnail-box { - max-height: 100px !important; + max-height: 120px !important; } } diff --git a/webapp/portlet/src/main/webapp/vue-apps/activity-stream/components/activity/content/ActivityLink.vue b/webapp/portlet/src/main/webapp/vue-apps/activity-stream/components/activity/content/ActivityLink.vue index 5d88c2cc346..17ac963d16f 100644 --- a/webapp/portlet/src/main/webapp/vue-apps/activity-stream/components/activity/content/ActivityLink.vue +++ b/webapp/portlet/src/main/webapp/vue-apps/activity-stream/components/activity/content/ActivityLink.vue @@ -223,7 +223,7 @@ export default { return this.sourceLink && (this.sourceLink.indexOf('/') === 0 || this.sourceLink.indexOf('#') === 0) && '_self' || (this.sourceLink && '_blank') || ''; }, thumbnailHeight() { - return this.thumbnailProperties && this.thumbnailProperties.height || (!this.useEmbeddedLinkView && '150px' || '100px'); + return this.thumbnailProperties && this.thumbnailProperties.height || (!this.useEmbeddedLinkView && '150px' || '120px'); }, thumbnailWidth() { return this.thumbnailProperties && this.thumbnailProperties.width || (!this.useEmbeddedLinkView && '252px' || '150px'); @@ -241,7 +241,7 @@ export default { return this.thumbnailProperties && this.thumbnailProperties.noBorder; }, iconHeight() { - return this.defaultIcon && this.defaultIcon.height || '100px'; + return this.defaultIcon && this.defaultIcon.height || '120px'; }, iconWidth() { return this.defaultIcon && this.defaultIcon.width || '175px';