Fix incorrect ReturnType instead of ReturnValue

This commit is contained in:
Koen Vlaswinkel
2023-09-19 15:29:45 +02:00
parent 297260af88
commit 96a8bea50a

View File

@@ -104,7 +104,7 @@ function ModelableMethodRow(props: MethodRowProps) {
onChange(method, {
// If there are no arguments, we will default to "Argument[this]"
input: argumentsList.length === 0 ? "Argument[this]" : "Argument[0]",
output: "ReturnType",
output: "ReturnValue",
kind: "value",
...modeledMethod,
type: e.target.value as ModeledMethodType,