Skip to content

Commit

Permalink
CB-4853 updates docker containerId view in update instruction for CE (#…
Browse files Browse the repository at this point in the history
…2646)

* CB-4853 updates docker containerId view in update instruction for CE

* CB-4853 adds const "{your container id}" in the update instruction
  • Loading branch information
sergeyteleshev authored May 22, 2024
1 parent fac08c1 commit e05dafd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion webapp/packages/product-default/src/UpdateInstruction.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 = '{your container id}';

return (
<div className={className}>
<Code>
Expand Down

0 comments on commit e05dafd

Please sign in to comment.