From 15c891ef4198a94ebcdf888a6d09e6f5817ae225 Mon Sep 17 00:00:00 2001 From: vasraz Date: Mon, 24 Oct 2022 20:45:57 +0100 Subject: Fix Critical bug reported by Sonar Fixes malformed 'calc' expressions reported as critical bug by Sonar Cloud Signed-off-by: Vasyl Razinkov Change-Id: Id31765c7b58701cc448b7c4b192db2986090ed79 Issue-ID: SDC-4230 --- catalog-ui/src/app/view-models/workspace/workspace.less | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'catalog-ui/src/app/view-models/workspace/workspace.less') diff --git a/catalog-ui/src/app/view-models/workspace/workspace.less b/catalog-ui/src/app/view-models/workspace/workspace.less index 5c479c7370..aace1325f2 100644 --- a/catalog-ui/src/app/view-models/workspace/workspace.less +++ b/catalog-ui/src/app/view-models/workspace/workspace.less @@ -206,7 +206,6 @@ } } .w-sdc-main-container-body-content { - // height:calc(~'100% - @{action_nav_height} - @{tab_title}'); align-items: center; padding: 0 100px 20px 100px; &.third-party { @@ -221,7 +220,7 @@ } .w-sdc-main-container-body-content-wrapper { overflow: auto; - height: calc(~'100% - @{action_nav_height}'); + height: ~"calc(100% - @{action_nav_height})"; .w-sdc-main-container-body-content-header { display: flex; .workspace-tab-title { -- cgit 1.2.3-korg