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

JS-3693: fix

This commit is contained in:
Andrew Simachev 2024-01-08 13:20:01 +01:00
parent 677b8661f2
commit f2354111ce
No known key found for this signature in database
GPG key ID: 49A163D0D14E6FD8
2 changed files with 2 additions and 2 deletions

2
dist/js/export.js vendored
View file

@ -1,6 +1,6 @@
document.body.onload = function () {
$(function () {
var link = $('lnk, a');
var link = $('markuplink, a');
var block = $('.block');
var bookmark = $('.block.blockBookmark .inner');

View file

@ -105,7 +105,7 @@ const PreviewComponent = observer(class PreviewComponent extends React.Component
const { preview } = commonStore;
const { type, target } = preview;
const { object } = this.state;
const object = this.state.object || preview.object;
switch (type) {
case I.PreviewType.Link: {