Skip to content

Commit

Permalink
Fix always true
Browse files Browse the repository at this point in the history
  • Loading branch information
runejo committed Jan 7, 2025
1 parent 79c11c0 commit edb2ab1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PxWeb/Code/PxDatabase/Builders/MenuBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -478,7 +478,7 @@ private static string GetNames(PCAxis.Paxiom.Variable variable)
for (int i = 0; i < 4; i++)
{
names.Append(variable.Values[i].Value);
if (i < 5 || i == variable.Values.Count)
if (i == variable.Values.Count)
{
names.Append(", ");
}
Expand Down

0 comments on commit edb2ab1

Please sign in to comment.