File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
packages/firestore/src/core Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -348,7 +348,7 @@ export function targetGetLowerBound(
348
348
const orderBy = target . orderBy [ i ] ;
349
349
if ( orderBy . field . isEqual ( segment . fieldPath ) ) {
350
350
const cursorValue = target . startAt . position [ i ] ;
351
- if ( valuesMax ( segmentValue , cursorValue ) == cursorValue ) {
351
+ if ( valuesMax ( segmentValue , cursorValue ) === cursorValue ) {
352
352
segmentValue = cursorValue ;
353
353
segmentInclusive = ! target . startAt . before ;
354
354
}
@@ -433,7 +433,7 @@ export function targetGetUpperBound(
433
433
const orderBy = target . orderBy [ i ] ;
434
434
if ( orderBy . field . isEqual ( segment . fieldPath ) ) {
435
435
const cursorValue = target . endAt . position [ i ] ;
436
- if ( valuesMin ( segmentValue , cursorValue ) == cursorValue ) {
436
+ if ( valuesMin ( segmentValue , cursorValue ) === cursorValue ) {
437
437
segmentValue = cursorValue ;
438
438
segmentInclusive = ! target . endAt . before ;
439
439
}
You can’t perform that action at this time.
0 commit comments