[autofix.ci] apply automated fixes

This commit is contained in:
autofix-ci[bot]
2025-09-04 02:43:53 +00:00
committed by GitHub
parent 940b9967b8
commit 4a3a7fa47b
4 changed files with 13 additions and 4 deletions

View File

@@ -214,7 +214,9 @@ export const AddApplication = ({ projectId, projectName }: Props) => {
</span>
</SelectItem>
))}
<SelectLabel>Servers ({servers?.length + 1})</SelectLabel>
<SelectLabel>
Servers ({servers?.length + 1})
</SelectLabel>
</SelectGroup>
</SelectContent>
</Select>

View File

@@ -222,7 +222,9 @@ export const AddCompose = ({ projectId, projectName }: Props) => {
</span>
</SelectItem>
))}
<SelectLabel>Servers ({servers?.length + 1})</SelectLabel>
<SelectLabel>
Servers ({servers?.length + 1})
</SelectLabel>
</SelectGroup>
</SelectContent>
</Select>

View File

@@ -500,7 +500,10 @@ export const AddTemplate = ({ projectId, baseUrl }: Props) => {
onClick={async () => {
const promise = mutateAsync({
projectId,
serverId: serverId === "dokploy" ? undefined : serverId,
serverId:
serverId === "dokploy"
? undefined
: serverId,
id: template.id,
baseUrl: customBaseUrl,
});

View File

@@ -222,7 +222,9 @@ export const AddCertificate = () => {
</span>
</SelectItem>
))}
<SelectLabel>Servers ({servers?.length + 1})</SelectLabel>
<SelectLabel>
Servers ({servers?.length + 1})
</SelectLabel>
</SelectGroup>
</SelectContent>
</Select>