fix(slot): fix fallback disappearing when remounted

This commit is contained in:
MrWindlike 2022-09-05 09:48:03 +08:00 committed by Yanzhen Yu
parent 4e4e835325
commit 6b8dce1be5

View File

@ -23,11 +23,7 @@ export class SlotReceiver {
constructor() {
this.emitter.on('*', (slotKey: string, c: React.ReactNode) => {
// undefined means no fallback has been received yet
// null means the Receiver component start to hanle the events
if (this.fallbacks[slotKey] === undefined) {
this.fallbacks[slotKey] = c;
}
this.fallbacks[slotKey] = c;
});
}
}