From dd88a81f929de9c0521e8753063372ca844762c8 Mon Sep 17 00:00:00 2001 From: Shubham Mehrotra Date: Wed, 1 Apr 2020 12:26:21 +0530 Subject: [PATCH] remove line --- .../src/Resources/views/shop/customers/account/index.blade.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/Webkul/Velocity/src/Resources/views/shop/customers/account/index.blade.php b/packages/Webkul/Velocity/src/Resources/views/shop/customers/account/index.blade.php index 312e0f80e..0b14d0dd2 100644 --- a/packages/Webkul/Velocity/src/Resources/views/shop/customers/account/index.blade.php +++ b/packages/Webkul/Velocity/src/Resources/views/shop/customers/account/index.blade.php @@ -19,10 +19,9 @@ let contentHeight = $('.account-layout').css('height'); sidebarHeight = parseInt(sidebarHeight.substring(0, sidebarHeight.length - 2)); - contentHeight = parseInt(contentHeight.substring(0, contentHeight.length - 2)); - var height = sidebarHeight > contentHeight ? sidebarHeight + 30 : contentHeight; + let height = sidebarHeight > contentHeight ? sidebarHeight + 30 : contentHeight; height = height + "px"; $('.account-content').css('height', height);