mirror of https://github.com/usual2970/certimate
feat: default set `autoRestart` on deployment to 1panel or baotapanel
parent
a30379bfdb
commit
f9e3797cdd
|
@ -16,7 +16,9 @@ export type DeployNodeConfigForm1PanelConsoleConfigProps = {
|
|||
};
|
||||
|
||||
const initFormModel = (): DeployNodeConfigForm1PanelConsoleConfigFieldValues => {
|
||||
return {};
|
||||
return {
|
||||
autoRestart: true,
|
||||
};
|
||||
};
|
||||
|
||||
const DeployNodeConfigForm1PanelConsoleConfig = ({
|
||||
|
|
|
@ -16,7 +16,9 @@ export type DeployNodeConfigFormBaotaPanelConsoleConfigProps = {
|
|||
};
|
||||
|
||||
const initFormModel = (): DeployNodeConfigFormBaotaPanelConsoleConfigFieldValues => {
|
||||
return {};
|
||||
return {
|
||||
autoRestart: true,
|
||||
};
|
||||
};
|
||||
|
||||
const DeployNodeConfigFormBaotaPanelConsoleConfig = ({
|
||||
|
|
Loading…
Reference in New Issue