From b1a8b65a7890adbba84154d49266b46f97a7ce3f Mon Sep 17 00:00:00 2001 From: sergeyteleshev Date: Tue, 21 May 2024 12:43:55 +0200 Subject: [PATCH] CB-4853 updates docker containerId view in update instruction for CE --- webapp/packages/product-default/src/UpdateInstruction.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/webapp/packages/product-default/src/UpdateInstruction.tsx b/webapp/packages/product-default/src/UpdateInstruction.tsx index 5b99641b8a..5ea930c33f 100644 --- a/webapp/packages/product-default/src/UpdateInstruction.tsx +++ b/webapp/packages/product-default/src/UpdateInstruction.tsx @@ -9,7 +9,8 @@ import { Code } from '@cloudbeaver/core-blocks'; import type { InstructionComponent } from '@cloudbeaver/core-version-update'; export const UpdateInstruction: InstructionComponent = function UpdateInstruction({ version, containerId, className }) { - const id = containerId || 'cloudbeaver'; + const id = `containerId("${containerId || 'cloudbeaver'}")`; + return (