diff --git a/site/src/pages/TemplateBuilder/BaseInfraSelectStep.tsx b/site/src/pages/TemplateBuilder/BaseInfraSelectStep.tsx index c7744c6ff392d..5d4a2b48d8bd2 100644 --- a/site/src/pages/TemplateBuilder/BaseInfraSelectStep.tsx +++ b/site/src/pages/TemplateBuilder/BaseInfraSelectStep.tsx @@ -42,8 +42,7 @@ export const BaseInfraSelectStep: FC = ({ Select your infrastructure foundation. - {/* 420px accounts for navbar, page header, card padding, tab bar, and nav controls */} -
+
{bases.map((base) => ( - {/* 340px accounts for navbar, page header, card padding, and nav controls */} -
- - {prerequisites && ( -
- - {prerequisites} - -
- )} -
-
+ + {prerequisites && ( +
+ + {prerequisites} + +
+ )} +
); }; diff --git a/site/src/pages/TemplateBuilder/ModuleSelectStep.tsx b/site/src/pages/TemplateBuilder/ModuleSelectStep.tsx index 7c46eb416a0ac..a5a04e123492c 100644 --- a/site/src/pages/TemplateBuilder/ModuleSelectStep.tsx +++ b/site/src/pages/TemplateBuilder/ModuleSelectStep.tsx @@ -244,8 +244,7 @@ export const ModuleSelectStep: FC = ({ - {/* 420px accounts for navbar, page header, card padding, search, tabs, and nav controls */} -
+
{visibleModules.length ? ( visibleModules.map((m) => ( = ({ Set values for module variables. - {/* 340px accounts for navbar, page header, card padding, and nav controls */} -
+
{selectedModules.map((mod) => { const configurableVars = mod.variables.filter((v) => !v.sensitive); const sensitiveVars = mod.variables.filter((v) => v.sensitive);