File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -168,7 +168,7 @@ export class LocalDocumentsView {
168
168
// the change (hence overlay==null), but would now match.
169
169
if (
170
170
existenceStateChanged . has ( doc . key ) &&
171
- ( overlay == null || overlay . mutation instanceof PatchMutation )
171
+ ( overlay === null || overlay . mutation instanceof PatchMutation )
172
172
) {
173
173
recalculateDocuments = recalculateDocuments . insert ( doc . key , doc ) ;
174
174
} else if ( overlay !== null ) {
@@ -413,7 +413,7 @@ export class LocalDocumentsView {
413
413
key : DocumentKey ,
414
414
overlay : Overlay | null
415
415
) : PersistencePromise < MutableDocument > {
416
- return overlay == null || overlay . mutation instanceof PatchMutation
416
+ return overlay === null || overlay . mutation instanceof PatchMutation
417
417
? this . remoteDocumentCache . getEntry ( transaction , key )
418
418
: PersistencePromise . resolve ( MutableDocument . newInvalidDocument ( key ) ) ;
419
419
}
Original file line number Diff line number Diff line change @@ -372,7 +372,7 @@ export function mutationExtractBaseValue(
372
372
) ;
373
373
374
374
if ( coercedValue != null ) {
375
- if ( baseObject == null ) {
375
+ if ( baseObject === null ) {
376
376
baseObject = ObjectValue . empty ( ) ;
377
377
}
378
378
baseObject . set ( fieldTransform . field , coercedValue ) ;
You can’t perform that action at this time.
0 commit comments