Skip to content

Commit

Permalink
fix(csi): Fix settings throwing (#3035)
Browse files Browse the repository at this point in the history
fix issue with load cases setting throwing and causing broken UI state
  • Loading branch information
JR-Morgan authored Nov 10, 2023
1 parent 0f453af commit bdf0ebe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ConnectorCSI/ConnectorCSIShared/Util/ResultUtils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public static List<string> GetNamesOfAllLoadCasesAndCombos(cSapModel sapModel)
List<string> names = new();

int numberOfLoadCombinations = 0;
string[] loadCombinationNames = null;
string[] loadCombinationNames = Array.Empty<string>();
sapModel.RespCombo.GetNameList(ref numberOfLoadCombinations, ref loadCombinationNames);
names.AddRange(loadCombinationNames);

Expand Down

0 comments on commit bdf0ebe

Please sign in to comment.