Skip to content

Commit

Permalink
kb(tabstrip): Add missing @key to foreach loop
Browse files Browse the repository at this point in the history
  • Loading branch information
dimodi authored and dimodi committed Sep 17, 2024
1 parent 227eba6 commit e198fb2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion knowledge-base/tabstrip-remove-tab.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ Currently active tab index: @ActiveTabIndex
@{
foreach (TabModel tab in Tabs)
{
<TabStripTab Title="@tab.Title" Visible="@tab.isVisibleTab">
<TabStripTab Title="@tab.Title" Visible="@tab.isVisibleTab" @key="@tab">
<HeaderTemplate>
<strong>@tab.Title</strong>
<button type="button"
Expand Down

0 comments on commit e198fb2

Please sign in to comment.