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.
2 parents 47e4c68 + 1bd188d commit 97bd39bCopy full SHA for 97bd39b
src/Blazor.Diagrams/Components/LinkWidget.razor
@@ -15,7 +15,7 @@
15
fill="none"
16
stroke="@color" />
17
18
-@if (dnlb!.OngoingLink == null || dnlb.OngoingLink != Link)
+@if (dnlb?.OngoingLink == null || dnlb.OngoingLink != Link)
19
{
20
@if (Link.Vertices.Count == 0)
21
@@ -62,4 +62,4 @@
62
@foreach (var label in Link.Labels)
63
64
<LinkLabelRenderer @key="label.Id" Label="@label" Path="@result.FullPath" />
65
-}
+}
0 commit comments