mirror of
https://github.com/smartxworks/sunmao-ui.git
synced 2025-04-06 21:40:23 +08:00
fix(slot): fix fallback disappearing when remounted
This commit is contained in:
parent
4e4e835325
commit
6b8dce1be5
@ -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;
|
||||
});
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user