mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-04-23 03:00:31 -04:00
feat(ui): starter models filter works with model base
For example, "flux" now matches any starter model with a model base of "FLUX".
This commit is contained in:
committed by
Kent Keirsey
parent
4f2ef7ce76
commit
3e860c8338
@@ -25,6 +25,7 @@ export const StarterModelsResults = memo(({ results }: StarterModelsResultsProps
|
||||
result.name.toLowerCase(),
|
||||
result.type.toLowerCase().replaceAll('_', ' '),
|
||||
result.description.toLowerCase(),
|
||||
result.base.toLowerCase(),
|
||||
];
|
||||
if (result.type === 'spandrel_image_to_image') {
|
||||
matchStrings.push('upscale');
|
||||
|
||||
Reference in New Issue
Block a user