fix(ui): special node icon tooltip

This commit is contained in:
psychedelicious
2024-11-19 16:19:37 -06:00
parent b157ae928c
commit c70f4404c4
2 changed files with 7 additions and 1 deletions

View File

@@ -978,6 +978,8 @@
"zoomOutNodes": "Zoom Out",
"betaDesc": "This invocation is in beta. Until it is stable, it may have breaking changes during app updates. We plan to support this invocation long-term.",
"prototypeDesc": "This invocation is a prototype. It may have breaking changes during app updates and may be removed at any time.",
"internalDesc": "This invocation is used internally by Invoke. It may have breaking changes during app updates and may be removed at any time.",
"specialDesc": "This invocation some special handling in the app. For example, Batch nodes are used to queue multiple graphs from a single workflow.",
"imageAccessError": "Unable to find image {{image_name}}, resetting to default",
"boardAccessError": "Unable to find board {{board_id}}, resetting to default",
"modelAccessError": "Unable to find model {{key}}, resetting to default",

View File

@@ -41,7 +41,11 @@ const ClassificationTooltipContent = memo(({ classification }: { classification:
}
if (classification === 'internal') {
return t('nodes.prototypeDesc');
return t('nodes.internalDesc');
}
if (classification === 'special') {
return t('nodes.specialDesc');
}
return null;