Skip to content

Commit

Permalink
Fix social image ratio in manager #61
Browse files Browse the repository at this point in the history
  • Loading branch information
ilyautkin committed Aug 16, 2023
1 parent 5939059 commit 798f287
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -297,13 +297,13 @@ Ext.reg('seosuite-combo-image', SeoSuite.combo.Image);
Ext.ux.Image = function(config) {
config = config || {};

var image = this.getImage(config.src, config.width || 150, config.height || 150);
var image = this.getImage(config.src, config.width || 285, config.height || 150);

Ext.applyIf(config, {
hidden : image === Ext.BLANK_IMAGE_URL,
autoEl : {
tag : 'img',
width : config.width || 150,
width : config.width || 285,
height : config.height || 150,
src : image,
cls : 'x-field-image'
Expand Down

0 comments on commit 798f287

Please sign in to comment.