[react-interactions] FocusWithin beforeblur propagation fix (#17375)

This commit is contained in:
Dominic Gannaway
2019-11-15 12:05:00 +00:00
committed by GitHub
parent f30ccb9ed9
commit 532810a370

View File

@@ -544,6 +544,10 @@ const focusWithinResponderImpl = {
onBeforeBlurWithin,
DiscreteEvent,
);
} else {
// We want to propagate to next focusWithin responder
// if this responder doesn't handle beforeblur
context.continuePropagation();
}
}
}