From 1317f0e47823f256fe4fdd3d70d38363c1a72172 Mon Sep 17 00:00:00 2001 From: uldisrudzitis Date: Thu, 20 Aug 2026 15:13:28 +0300 Subject: [PATCH] Fix entry width rendering in editor --- .../app/sites/sections/entries/section-entry-render.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor/src/app/sites/sections/entries/section-entry-render.service.ts b/editor/src/app/sites/sections/entries/section-entry-render.service.ts index ae664ffb..aaacfd76 100644 --- a/editor/src/app/sites/sections/entries/section-entry-render.service.ts +++ b/editor/src/app/sites/sections/entries/section-entry-render.service.ts @@ -90,7 +90,7 @@ export class SectionEntryRenderService { styles.push(`left:${left}px;top:${top}px`); if (entry.content && entry.content.width) { - styles.push(`width:${entry.content.width}px`); + styles.push(`width:${entry.content.width}`); } else if ( currentSectionType === 'shop' && shopSettings.group_price_item &&