1
0
Fork 0
mirror of https://github.com/anyproto/anytype-ts.git synced 2025-06-08 05:57:02 +09:00

fix ObjectBookmarkFetch

This commit is contained in:
Andrew Simachev 2025-04-12 11:47:36 +02:00
parent cb7b0f53b3
commit 6aaad239ca
No known key found for this signature in database
GPG key ID: 1DFE44B21443F0EF
2 changed files with 1 additions and 3 deletions

View file

@ -319,7 +319,7 @@ const Cell = observer(forwardRef<I.CellRef, Props>((props, ref) => {
};
case 'reload': {
C.ObjectBookmarkFetch(recordId, value, () => analytics.event('ReloadSourceData'));
C.ObjectBookmarkFetch(record.id, value, () => analytics.event('ReloadSourceData'));
break;
};
};

View file

@ -28,8 +28,6 @@ class Focus {
};
this.backup = U.Common.objectCopy(this.state);
console.log('SET', range.from, range.to);
console.trace();
C.BlockSetCarriage(keyboard.getRootId(), id, range);
return this;
};