Merge pull request #3137 from Dokploy/feat/add-warning-to-redeploy-on-domain-changes

feat: add informational alert for domain changes in AddDomain component
This commit is contained in:
Mauricio Siu
2025-11-30 14:56:50 -06:00
committed by GitHub

View File

@@ -305,6 +305,13 @@ export const AddDomain = ({ id, type, domainId = "", children }: Props) => {
</DialogHeader>
{isError && <AlertBlock type="error">{error?.message}</AlertBlock>}
{type === "compose" && (
<AlertBlock type="info" className="mb-4">
Whenever you make changes to domains, remember to redeploy your
compose to apply the changes.
</AlertBlock>
)}
<Form {...form}>
<form
id="hook-form"