We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b698e4c commit 95c065eCopy full SHA for 95c065e
blocksuite/affine/components/src/drag-indicator/file-drop-manager.ts
@@ -198,10 +198,9 @@ export class FileDropExtension extends LifeCycleWatcher {
198
199
std.event.disposables.add(
200
this.dropTarget$.subscribe(target => {
201
- if (this._disableIndicator) return;
202
FileDropExtension.indicator.rect = this._disableIndicator
203
- ? (target?.rect ?? null)
204
- : null;
+ ? null
+ : (target?.rect ?? null);
205
})
206
);
207
0 commit comments