1
0
Fork 0
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:
Chaim Lev-Ari 2023-11-15 09:34:08 +02:00 committed by GitHub
parent 51474262eb
commit a0f583a17d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 1 deletions

View file

@ -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>