File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Lombiq.TrainingDemo/Navigation Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ protected override void Build(NavigationBuilder builder) =>
24
24
// used if you want to override the menu item shape in order to add a nice looking icon.
25
25
. AddClass ( "persons" ) . Id ( "persons" )
26
26
// This means that the top-level menu item also will point to the action where its first child item points.
27
- . LinkToFirstChild ( true )
27
+ . LinkToFirstChild ( value : true )
28
28
29
29
// Now let's add the sub menu items.
30
30
. Add ( T [ "Test" ] , subitem => subitem
@@ -35,7 +35,7 @@ protected override void Build(NavigationBuilder builder) =>
35
35
)
36
36
37
37
. Add ( T [ "Person List" ] , subitem => subitem
38
- . LinkToFirstChild ( true )
38
+ . LinkToFirstChild ( value : true )
39
39
40
40
. Add ( T [ "Newest Items" ] , thirdLevelItem => thirdLevelItem
41
41
. Action (
You can’t perform that action at this time.
0 commit comments