File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 11<Project Sdk =" Microsoft.NET.Sdk.Razor" >
22
33 <PropertyGroup >
4- <Version >9.7.4-beta05 </Version >
4+ <Version >9.7.4-beta06 </Version >
55 </PropertyGroup >
66
77 <ItemGroup >
Original file line number Diff line number Diff line change @@ -229,7 +229,7 @@ private int MultipleSelectColumnLeft()
229229
230230 private bool IsNotFixedColumn ( ) => ! ( FixedExtendButtonsColumn && IsExtendButtonsInRowHeader ) && ! ( GetVisibleColumns ( ) . FirstOrDefault ( ) ? . Fixed ?? false ) ;
231231
232- private ConcurrentDictionary < ITableColumn , bool > LastFixedColumnCache { get ; } = new ( ) ;
232+ private ConcurrentDictionary < ITableColumn , bool > LastFixedColumnCache { get ; } = new ( ReferenceEqualityComparer . Instance ) ;
233233
234234 private bool IsLastColumn ( ITableColumn col ) => LastFixedColumnCache . GetOrAdd ( col , col =>
235235 {
@@ -244,7 +244,7 @@ private bool IsLastColumn(ITableColumn col) => LastFixedColumnCache.GetOrAdd(col
244244
245245 private bool IsLastExtendButtonColumn ( ) => IsExtendButtonsInRowHeader && ! GetVisibleColumns ( ) . Any ( i => i . Fixed ) ;
246246
247- private ConcurrentDictionary < ITableColumn , bool > FirstFixedColumnCache { get ; } = new ( ) ;
247+ private ConcurrentDictionary < ITableColumn , bool > FirstFixedColumnCache { get ; } = new ( ReferenceEqualityComparer . Instance ) ;
248248
249249 private bool IsFirstColumn ( ITableColumn col ) => FirstFixedColumnCache . GetOrAdd ( col , col =>
250250 {
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ public partial class TableToolbar<TItem> : ComponentBase
2020 /// </summary>
2121 private readonly List < IToolbarComponent > _buttons = [ ] ;
2222
23- private readonly ConcurrentDictionary < ButtonBase , bool > _asyncButtonStateCache = new ( ) ;
23+ private readonly ConcurrentDictionary < ButtonBase , bool > _asyncButtonStateCache = new ( ReferenceEqualityComparer . Instance ) ;
2424
2525 /// <summary>
2626 /// Specifies the content to be rendered inside this
You can’t perform that action at this time.
0 commit comments