File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/BootstrapBlazor/Components/Table Expand file tree Collapse file tree 1 file changed +2
-2
lines changed 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 {
You can’t perform that action at this time.
0 commit comments