Commit 5c629bb 1 parent ed8209e commit 5c629bb Copy full SHA for 5c629bb
File tree 2 files changed +11
-9
lines changed
2 files changed +11
-9
lines changed Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk.Razor" >
2
2
3
3
<PropertyGroup >
4
- <Version >8.9.4-beta06 </Version >
4
+ <Version >8.9.4</Version >
5
5
</PropertyGroup >
6
6
7
7
<ItemGroup Condition =" '$(TargetFramework)' == 'net6.0'" >
Original file line number Diff line number Diff line change 14
14
<div class =" list-group-body scroll" >
15
15
@foreach ( var item in Items )
16
16
{
17
- @if (ItemTemplate != null )
18
- {
19
- @ItemTemplate(item)
20
- }
21
- else
22
- {
23
- <div @key =" item" class =" @GetItemClassString(item)" @onclick =" () => OnClick(item)" >@GetItemText(item) </div >
24
- }
17
+ <div @key =" item" class =" @GetItemClassString(item)" @onclick =" () => OnClick(item)" >
18
+ @if (ItemTemplate != null )
19
+ {
20
+ @ItemTemplate(item)
21
+ }
22
+ else
23
+ {
24
+ @GetItemText(item)
25
+ }
26
+ </div >
25
27
}
26
28
</div >
27
29
</div >
You can’t perform that action at this time.
0 commit comments