Fixed save load issues in the variable types of nodes
Some checks failed
Build / build (push) Has been cancelled

This commit is contained in:
Ankitkumar Satapara
2026-04-22 00:48:39 +05:30
parent 9908fd097c
commit f70e21c40e
4 changed files with 70 additions and 6 deletions

View File

@@ -554,7 +554,10 @@ namespace Nodify.Calculator
var sysOp = new SystemOperationViewModel
{
Title = info.Title,
SystemOperationType = info.sysOp
SystemOperationType = info.sysOp,
IsSimpleVariable = info.IsSimpleVariable,
VariableType = info.VariableType ?? string.Empty,
ClassName = info.ClassName ?? string.Empty
};
if (info.sysOp == SystemOperations.COPY)