Skip to content
Snippets Groups Projects
Commit 4184d7d7 authored by Hazelnoot's avatar Hazelnoot
Browse files

merge: Remove our addition of copy remote link (!943)

View MR for information: !943



Closes #1005

Approved-by: default avatardakkar <dakkar@thenautilus.net>
Approved-by: default avatarHazelnoot <acomputerdog@gmail.com>
parents 835e6112 9782f2a4
No related branches found
No related tags found
1 merge request!943Remove our addition of copy remote link
Pipeline #2708 passed with stages
in 51 minutes and 53 seconds
......@@ -159,17 +159,6 @@ export function getCopyNoteLinkMenu(note: Misskey.entities.Note, text: string):
};
}
export function getCopyNoteOriginLinkMenu(note: misskey.entities.Note, text: string): MenuItem {
return {
icon: 'ph-link ph-bold ph-lg',
text,
action: (): void => {
copyToClipboard(note.url ?? note.uri);
os.success();
},
};
}
function getNoteEmbedCodeMenu(note: Misskey.entities.Note, text: string): MenuItem | undefined {
if (note.url != null || note.uri != null) return undefined;
if (['specified', 'followers'].includes(note.visibility)) return undefined;
......@@ -338,9 +327,6 @@ export function getNoteMenu(props: {
}, getCopyNoteLinkMenu(appearNote, i18n.ts.copyLink));
if (appearNote.url || appearNote.uri) {
menuItems.push(
getCopyNoteOriginLinkMenu(appearNote, 'Copy link (Origin)')
);
menuItems.push({
icon: 'ti ti-link',
text: i18n.ts.copyRemoteLink,
......@@ -506,9 +492,6 @@ export function getNoteMenu(props: {
}, getCopyNoteLinkMenu(appearNote, i18n.ts.copyLink));
if (appearNote.url || appearNote.uri) {
menuItems.push(
getCopyNoteOriginLinkMenu(appearNote, 'Copy link (Origin)')
);
menuItems.push({
icon: 'ti ti-link',
text: i18n.ts.copyRemoteLink,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment