mirror of
https://github.com/portainer/portainer.git
synced 2025-07-23 07:19:41 +02:00
fix(containers): align switches [EE-6314] (#10616)
This commit is contained in:
parent
51474262eb
commit
a0f583a17d
2 changed files with 6 additions and 1 deletions
|
@ -107,6 +107,7 @@ export function BaseForm({
|
|||
onChange={(alwaysPull) =>
|
||||
setFieldValue('alwaysPull', alwaysPull)
|
||||
}
|
||||
labelClass="col-sm-3 col-lg-2"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -126,6 +127,7 @@ export function BaseForm({
|
|||
setFieldValue('enableWebhook', enableWebhook)
|
||||
}
|
||||
featureId={FeatureId.CONTAINER_WEBHOOK}
|
||||
labelClass="col-sm-3 col-lg-2"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -143,6 +145,7 @@ export function BaseForm({
|
|||
onChange={(publishAllPorts) =>
|
||||
setFieldValue('publishAllPorts', publishAllPorts)
|
||||
}
|
||||
labelClass="col-sm-3 col-lg-2"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -179,6 +182,7 @@ export function BaseForm({
|
|||
tooltip="When enabled, Portainer will automatically remove the container when it exits. This is useful when you want to use the container only once."
|
||||
checked={values.autoRemove}
|
||||
onChange={(autoRemove) => setFieldValue('autoRemove', autoRemove)}
|
||||
labelClass="col-sm-3 col-lg-2"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue