Skip to content

Commit

Permalink
Merge pull request #28261 from esh-g/anonymous-link-copy
Browse files Browse the repository at this point in the history
Allow anonymous user to copy url
  • Loading branch information
youssef-lr authored Oct 2, 2023
2 parents d4a33cd + 8ef6961 commit c7b1635
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/pages/home/report/ContextMenu/ContextMenuActions.js
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ export default [
getDescription: () => {},
},
{
isAnonymousAction: false,
isAnonymousAction: true,
textTranslateKey: 'reportActionContextMenu.copyURLToClipboard',
icon: Expensicons.Copy,
successTextTranslateKey: 'reportActionContextMenu.copied',
Expand All @@ -157,7 +157,7 @@ export default [
getDescription: (selection) => selection,
},
{
isAnonymousAction: false,
isAnonymousAction: true,
textTranslateKey: 'reportActionContextMenu.copyEmailToClipboard',
icon: Expensicons.Copy,
successTextTranslateKey: 'reportActionContextMenu.copied',
Expand Down Expand Up @@ -221,7 +221,7 @@ export default [
},

{
isAnonymousAction: false,
isAnonymousAction: true,
textTranslateKey: 'reportActionContextMenu.copyLink',
icon: Expensicons.LinkCopy,
successIcon: Expensicons.Checkmark,
Expand Down

0 comments on commit c7b1635

Please sign in to comment.