mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
add warning if no upscale model or no tile controlnet for base model
This commit is contained in:
committed by
psychedelicious
parent
d2bf3629bf
commit
5ab36e0433
@ -203,6 +203,10 @@ const createSelector = (templates: Templates) =>
|
||||
if (!upscale.upscaleModel) {
|
||||
reasons.push({ content: "No upscale model selected" })
|
||||
}
|
||||
|
||||
if (!upscale.tileControlnetModel) {
|
||||
reasons.push({ content: "No valid tile controlnet available" })
|
||||
}
|
||||
} else {
|
||||
// Handling for all other tabs
|
||||
selectControlAdapterAll(controlAdapters)
|
||||
|
Reference in New Issue
Block a user