diff --git a/frappe/templates/includes/image_with_blur.html b/frappe/templates/includes/image_with_blur.html
index 20b0380b88..dbddb9d8ef 100644
--- a/frappe/templates/includes/image_with_blur.html
+++ b/frappe/templates/includes/image_with_blur.html
@@ -1,7 +1,9 @@
{%- set res = frappe.utils.get_thumbnail_base64_for_image(src) if src else false -%}
{%- if res and res['base64'].startswith('data:') -%}
+ data-src="{{ src or '' }}" alt="{{ alt or '' }}"
+ width="{{ res['width'] }}" height="{{ res['height'] }}"
+ style="width: {{ res['width'] }}px; height: {{ res['height'] }}px;" />
{%- else -%}
{%- endif -%}