File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
packages/@react-stately/layout/src Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -454,11 +454,11 @@ export class TableLayout<T> extends ListLayout<T> {
454
454
455
455
let isChrome105 ;
456
456
if ( window . navigator [ 'userAgentData' ] ) {
457
- isChrome105 = window . navigator [ 'userAgentData' ] ?. brands . some ( b => b . brand === 'Chromium' && Number ( b . version ) > = 105 ) ;
457
+ isChrome105 = window . navigator [ 'userAgentData' ] ?. brands . some ( b => b . brand === 'Chromium' && Number ( b . version ) == = 105 ) ;
458
458
} else {
459
459
let regex = / C h r o m e \/ ( \d + ) / ;
460
460
let matches = regex . exec ( window . navigator . userAgent ) ;
461
- isChrome105 = matches && matches . length >= 2 && Number ( matches [ 1 ] ) > = 105 ;
461
+ isChrome105 = matches && matches . length >= 2 && Number ( matches [ 1 ] ) == = 105 ;
462
462
}
463
463
464
464
return isChrome105 ;
You can’t perform that action at this time.
0 commit comments