We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 352e9f4 commit 28972bbCopy full SHA for 28972bb
test/ProgressOnderwijsUtils.Tests/HtmlDslGenerator.cs
@@ -275,7 +275,7 @@ string GenerateAttributeLookupTable(
275
{
276
// Generate lookup entries for each element
277
var elementLookups = elements.Select(el => {
278
- var elementAttributes = ((IEnumerable<string>)globalAttributes).Concat(el.attributes).ToDistinctArray();
+ var elementAttributes = globalAttributes.Concat(el.attributes).ToDistinctArray();
279
var attributeEntries = elementAttributes.Select(attrName => {
280
var methodName = $"_{toClassName(attrName)}";
281
return $"[\"{attrName}\"] = \"{methodName}\"";
0 commit comments