From 6bc80cad64f640fbf8725c24b98b2aff26c1d57d Mon Sep 17 00:00:00 2001 From: girishpanchal30 Date: Fri, 8 Aug 2025 10:28:31 +0530 Subject: [PATCH] fix: fallback image in classic block --- js/FeedzyBlock/Editor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/FeedzyBlock/Editor.js b/js/FeedzyBlock/Editor.js index 91a6022f1..ff0b1cac6 100644 --- a/js/FeedzyBlock/Editor.js +++ b/js/FeedzyBlock/Editor.js @@ -225,7 +225,7 @@ class Editor extends Component { getImageURL(item, background) { let url; - if (item.thumbnail) { + if (item.thumbnail && this.props.attributes.thumb === 'auto') { url = item.thumbnail; } else if (this.props.attributes.default) { url = this.props.attributes.default.url;