Skip to content

Commit b73aeba

Browse files
Remove warning and fix primary constructor use.
1 parent bb31f0d commit b73aeba

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

src/Htmx.TagHelpers/HtmxConfigMetaTagHelper.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -311,8 +311,8 @@ public class HtmxTriggerSpecificationCache: Dictionary<string, HtmxTriggerSpecif
311311

312312
public class HtmxTriggerSpecification
313313
{
314-
[JsonPropertyName("trigger")]
315-
public string Trigger { get; set; }
314+
[JsonPropertyName("trigger")]
315+
public string Trigger { get; set; } = default!;
316316
[JsonPropertyName("sseEvent")]
317317
public string? SseEvent { get; set; }
318318
[JsonPropertyName("eventFilter")]

test/Htmx.Tests/HtmxTriggerSpecificationTests.cs

+8-1
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,15 @@
66

77
namespace Htmx.Tests;
88

9-
public class HtmxTriggerSpecificationTests(ITestOutputHelper outputHelper)
9+
public class HtmxTriggerSpecificationTests
1010
{
11+
private readonly ITestOutputHelper outputHelper;
12+
13+
public HtmxTriggerSpecificationTests(ITestOutputHelper outputHelper)
14+
{
15+
this.outputHelper = outputHelper;
16+
}
17+
1118
private const string Specifications =
1219
// lang=json
1320
"""

0 commit comments

Comments
 (0)