chore: Add placeholder image
diff --git a/erpnext/www/all-products/img/placeholder.png b/erpnext/www/all-products/img/placeholder.png
new file mode 100644
index 0000000..9780ad8
--- /dev/null
+++ b/erpnext/www/all-products/img/placeholder.png
Binary files differ
diff --git a/erpnext/www/all-products/search.js b/erpnext/www/all-products/search.js
index f17f7a0..9ed5b21 100644
--- a/erpnext/www/all-products/search.js
+++ b/erpnext/www/all-products/search.js
@@ -8,7 +8,7 @@
html = ""
for (let res of data.message) {
html += `<li class="list-group-item list-group-item-action">
- <img class="item-thumb" src="${res.thumbnail || ''}" />
+ <img class="item-thumb" src="${res.thumbnail || 'img/placeholder.png'}" />
<a href="/${res.route}">${res.web_item_name}</a>
</li>`
}