1
0
Fork 0
mirror of https://github.com/anyproto/anytype-ts.git synced 2025-06-08 14:07:01 +09:00

add copy link button

This commit is contained in:
Andrew Simachev 2025-01-30 13:50:55 +01:00
parent b2602ebf3f
commit 9c66e89cfe
No known key found for this signature in database
GPG key ID: 1DFE44B21443F0EF
2 changed files with 2 additions and 2 deletions

View file

@ -22,7 +22,7 @@
.urlWrapper { display: flex; flex-direction: row; align-items: center; gap: 0px 8px; }
.urlWrapper {
.label { flex-grow: 1; }
.label { flex-grow: 1; user-select: text !important; }
.button { flex-shrink: 0; font-weight: 500; }
}

View file

@ -1487,7 +1487,7 @@ const EditorPage = observer(class EditorPage extends React.Component<Props, Stat
};
menuCheck () {
return S.Menu.isOpen('', '', [ 'blockContext', 'searchText', 'onboarding' ]);
return S.Menu.isOpen('', '', [ 'blockContext', 'searchText', 'onboarding', 'publish' ]);
};
onArrowVertical (e: any, pressed: string, range: I.TextRange, length: number, props: any) {