Skip to content

Commit

Permalink
fixing an issue introduced in my last iteration which introduced a fi…
Browse files Browse the repository at this point in the history
…x for an existing bug in ExpressionBuilder -> ConvertArray
  • Loading branch information
ouldsid committed Feb 5, 2025
1 parent 06a4e9e commit 4bc280e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/Bicep.Core/Intermediate/ExpressionBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -741,7 +741,10 @@ void completePreviousChunk()
}
else
{
currentChunk.Add(ConvertWithoutLowering(arrayItem));
if (arrayItem.Value is not null)
{
currentChunk.Add(ConvertWithoutLowering(arrayItem.Value));
}
}
}
}
Expand Down

0 comments on commit 4bc280e

Please sign in to comment.