We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 80d9212 + fc21b34 commit aa62588Copy full SHA for aa62588
.gitignore
@@ -7,3 +7,5 @@
7
/docs/node_modules
8
9
.npmrc
10
+
11
+.DS_Store
src/component/Overlay.ts
@@ -273,7 +273,10 @@ export default class OverlayImp<E = unknown> implements Overlay<E> {
273
}
274
275
override (overlay: Partial<Overlay<E>>): void {
276
- this._prevOverlay = clone(this)
+ this._prevOverlay = clone({
277
+ ...this,
278
+ _prevOverlay: null
279
+ })
280
281
const {
282
id,
0 commit comments