Skip to content

Commit

Permalink
[5.x] Fix Replicator Preview images being too tall. Closes #9534 (#10455
Browse files Browse the repository at this point in the history
)

Fix Replicator Preview images being too tall. Closes #9534
  • Loading branch information
jackmcdade authored Jul 15, 2024
1 parent 982d853 commit 1ea7170
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ export default {
return replicatorPreviewHtml(_.map(this.assets, (asset) => {
return (asset.isImage || asset.isSvg) ?
`<img src="${asset.thumbnail}" width="20" height="20" title="${asset.basename}" />`
`<img src="${asset.thumbnail}" width="20" class="max-w-5 max-h-5" height="20" title="${asset.basename}" />`
: asset.basename;
}).join(', '));
},
Expand Down

0 comments on commit 1ea7170

Please sign in to comment.