File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
src/features/nodes/components/flow/nodes/Invocation/fields Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1017
1017
"missingField_withName" : " Missing field \" {{name}}\" " ,
1018
1018
"unexpectedField_withName" : " Unexpected field \" {{name}}\" " ,
1019
1019
"unknownField_withName" : " Unknown field \" {{name}}\" " ,
1020
- "unknownFieldEditWorkflowToFix_withName" : " Unknown field \" {{name}}\" (edit workflow to fix) " ,
1020
+ "unknownFieldEditWorkflowToFix_withName" : " Workflow contains an unknown field \" {{name}}\" . \n Edit the workflow to fix the issue. " ,
1021
1021
"updateNode" : " Update Node" ,
1022
1022
"updateApp" : " Update App" ,
1023
1023
"loadingTemplates" : " Loading {{name}}" ,
Original file line number Diff line number Diff line change 1
- import { FormControl , FormLabel } from '@invoke-ai/ui-library' ;
1
+ import { Flex , Text } from '@invoke-ai/ui-library' ;
2
2
import { InputFieldWrapper } from 'features/nodes/components/flow/nodes/Invocation/fields/InputFieldWrapper' ;
3
3
import { useInputFieldInstanceExists } from 'features/nodes/hooks/useInputFieldInstanceExists' ;
4
4
import { useInputFieldNameSafe } from 'features/nodes/hooks/useInputFieldNameSafe' ;
@@ -70,11 +70,11 @@ const Fallback = memo(
70
70
71
71
return (
72
72
< InputFieldWrapper >
73
- < FormControl isInvalid = { true } alignItems = "stretch" justifyContent = "center" gap = { 2 } h = "full" w = "full ">
74
- < FormLabel display = "flex" mb = { 0 } px = { 1 } py = { 2 } gap = { 2 } >
73
+ < Flex w = "full" px = { 1 } py = { 1 } justifyContent = "center ">
74
+ < Text fontWeight = "semibold" color = "error.300" whiteSpace = "pre" textAlign = "center" >
75
75
{ label }
76
- </ FormLabel >
77
- </ FormControl >
76
+ </ Text >
77
+ </ Flex >
78
78
</ InputFieldWrapper >
79
79
) ;
80
80
}
You can’t perform that action at this time.
0 commit comments