mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-01-11 02:30:21 +08:00
fix(menu): Copy Link => Copy Link Address #2105
This commit is contained in:
parent
982e3b2dec
commit
9b36698d73
1 changed files with 1 additions and 1 deletions
|
@ -221,7 +221,7 @@ class EventedIFrame extends React.Component
|
|||
menu.append(new MenuItem({ label: "Copy Email Address", click:( -> clipboard.writeText(href.split('mailto:').pop()) )}))
|
||||
else
|
||||
menu.append(new MenuItem({ label: "Open Link", click:( -> NylasEnv.windowEventHandler.openLink({href}) )}))
|
||||
menu.append(new MenuItem({ label: "Copy Link", click:( -> clipboard.writeText(href) )}))
|
||||
menu.append(new MenuItem({ label: "Copy Link Address", click:( -> clipboard.writeText(href) )}))
|
||||
menu.append(new MenuItem({ type: 'separator' }))
|
||||
|
||||
# Menu actions for images
|
||||
|
|
Loading…
Reference in a new issue