@@ -282,7 +282,7 @@ Call `ToggleSidebar()` method to toggle the Sidebar to show the icons only.
282
282
283
283
<main>
284
284
<div class="bb-top-row px-4 d-flex justify-content-between">
285
- <Icon Name="IconName.List" role="button" @onclick="ToogleSidebar " />
285
+ <Icon Name="IconName.List" role="button" @onclick="ToggleSidebar " />
286
286
<a href="https://docs.microsoft.com/aspnet/" target="_blank">About</a>
287
287
</div>
288
288
@@ -329,7 +329,7 @@ Call `ToggleSidebar()` method to toggle the Sidebar to show the icons only.
329
329
return navItems;
330
330
}
331
331
332
- private void ToogleSidebar () => sidebar.ToggleSidebar();
332
+ private void ToggleSidebar () => sidebar.ToggleSidebar();
333
333
}
334
334
```
335
335
@@ -352,7 +352,7 @@ A badge is useful when displaying the application version, environment, or other
352
352
353
353
<main>
354
354
<div class="bb-top-row px-4 d-flex justify-content-between">
355
- <Icon Name="IconName.List" role="button" @onclick="ToogleSidebar " />
355
+ <Icon Name="IconName.List" role="button" @onclick="ToggleSidebar " />
356
356
<a href="https://docs.microsoft.com/aspnet/" target="_blank">About</a>
357
357
</div>
358
358
@@ -399,7 +399,7 @@ A badge is useful when displaying the application version, environment, or other
399
399
return navItems;
400
400
}
401
401
402
- private void ToogleSidebar () => sidebar.ToggleSidebar();
402
+ private void ToggleSidebar () => sidebar.ToggleSidebar();
403
403
}
404
404
```
405
405
@@ -422,7 +422,7 @@ Use the `CustomIconName` parameter to set the custom logo icon using font awesom
422
422
423
423
<main>
424
424
<div class="bb-top-row px-4 d-flex justify-content-between">
425
- <Icon Name="IconName.List" role="button" @onclick="ToogleSidebar " />
425
+ <Icon Name="IconName.List" role="button" @onclick="ToggleSidebar " />
426
426
<a href="https://docs.microsoft.com/aspnet/" target="_blank">About</a>
427
427
</div>
428
428
@@ -469,7 +469,7 @@ Use the `CustomIconName` parameter to set the custom logo icon using font awesom
469
469
return navItems;
470
470
}
471
471
472
- private void ToogleSidebar () => sidebar.ToggleSidebar();
472
+ private void ToggleSidebar () => sidebar.ToggleSidebar();
473
473
}
474
474
```
475
475
@@ -492,7 +492,7 @@ Use the `ImageSrc` parameter to set the brand logo.
492
492
493
493
<main>
494
494
<div class="bb-top-row px-4 d-flex justify-content-between">
495
- <Icon Name="IconName.List" role="button" @onclick="ToogleSidebar " />
495
+ <Icon Name="IconName.List" role="button" @onclick="ToggleSidebar " />
496
496
<a href="https://docs.microsoft.com/aspnet/" target="_blank">About</a>
497
497
</div>
498
498
@@ -539,7 +539,7 @@ Use the `ImageSrc` parameter to set the brand logo.
539
539
return navItems;
540
540
}
541
541
542
- private void ToogleSidebar () => sidebar.ToggleSidebar();
542
+ private void ToggleSidebar () => sidebar.ToggleSidebar();
543
543
}
544
544
```
545
545
0 commit comments