diff --git a/dashboard/src/components/templates/app/BuildConfigs.tsx b/dashboard/src/components/templates/app/BuildConfigs.tsx index 95026b965..d94fc91f4 100644 --- a/dashboard/src/components/templates/app/BuildConfigs.tsx +++ b/dashboard/src/components/templates/app/BuildConfigs.tsx @@ -21,6 +21,7 @@ interface RuntimeConfigProps { const RuntimeConfigs: Component = (props) => { const [useDB, setUseDB] = createSignal(false) + const buildType = () => getValue(props.formStore, 'case') createEffect(() => { if ( @@ -31,6 +32,43 @@ const RuntimeConfigs: Component = (props) => { } }) + const containerOverrideConfig = ( + <> + + {(field, fieldProps) => ( + + )} + + + {(field, fieldProps) => ( + + )} + + + ) + return ( <> @@ -97,39 +135,13 @@ const RuntimeConfigs: Component = (props) => { + + {containerOverrideConfig} + - - {(field, fieldProps) => ( - - )} - - - {(field, fieldProps) => ( - - )} - + + {containerOverrideConfig} + ) diff --git a/dashboard/src/components/templates/app/SelectBuildType.tsx b/dashboard/src/components/templates/app/SelectBuildType.tsx index 4353f9ea3..405c6897f 100644 --- a/dashboard/src/components/templates/app/SelectBuildType.tsx +++ b/dashboard/src/components/templates/app/SelectBuildType.tsx @@ -203,7 +203,7 @@ const SelectBuildType: Component<{ - 静的ファイルを配信します。ビルドが必要な場合もこちらを選びます。 + 静的ファイルを配信します。ビルド(任意)を実行できます。 @@ -246,11 +246,7 @@ const SelectBuildType: Component<{ - - {runType() === 'runtime' - ? 'ベースDockerイメージと、ビルドコマンドを手動で設定します。' - : 'ビルド時のベースDockerイメージと、ビルドコマンドを手動で設定します。ビルドが必要無い場合は、こちらを選びます。'} - + ベースイメージとビルドコマンド(任意)を設定します。