diff --git a/frontend-modern/src/components/Settings/InfrastructureWorkspace.tsx b/frontend-modern/src/components/Settings/InfrastructureWorkspace.tsx index e6c3bfc89..d9fb77e75 100644 --- a/frontend-modern/src/components/Settings/InfrastructureWorkspace.tsx +++ b/frontend-modern/src/components/Settings/InfrastructureWorkspace.tsx @@ -80,6 +80,11 @@ interface AgentUninstallCommands { windows: string; } +const ADD_DIALOG_TITLE_ID = 'infrastructure-add-dialog-title'; +const ADD_DIALOG_DESCRIPTION_ID = 'infrastructure-add-dialog-description'; +const EDIT_DIALOG_TITLE_ID = 'infrastructure-edit-dialog-title'; +const EDIT_DIALOG_DESCRIPTION_ID = 'infrastructure-edit-dialog-description'; + const ADD_STEP_TO_TYPE: Record = { agent: 'agent', 'linux-host': 'agent', @@ -1020,14 +1025,19 @@ const InfrastructureWorkspaceContent: Component =
-

{addDialogTitle()}

-

{addDialogDescription()}

+

+ {addDialogTitle()} +

+

+ {addDialogDescription()} +