Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
canifa_note
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Vũ Hoàng Anh
canifa_note
Commits
6005d0f3
Unverified
Commit
6005d0f3
authored
Jul 30, 2025
by
Colin Holzman
Committed by
GitHub
Jul 30, 2025
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
chore: use MEMOS_INSTANCE_URL for "Copy Link" (#4930)
parent
1fcafd80
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
MemoActionMenu.tsx
web/src/components/MemoActionMenu.tsx
+6
-1
No files found.
web/src/components/MemoActionMenu.tsx
View file @
6005d0f3
...
@@ -16,6 +16,7 @@ import { useLocation } from "react-router-dom";
...
@@ -16,6 +16,7 @@ import { useLocation } from "react-router-dom";
import
{
markdownServiceClient
}
from
"@/grpcweb"
;
import
{
markdownServiceClient
}
from
"@/grpcweb"
;
import
useNavigateTo
from
"@/hooks/useNavigateTo"
;
import
useNavigateTo
from
"@/hooks/useNavigateTo"
;
import
{
memoStore
,
userStore
}
from
"@/store"
;
import
{
memoStore
,
userStore
}
from
"@/store"
;
import
{
workspaceStore
}
from
"@/store"
;
import
{
State
}
from
"@/types/proto/api/v1/common"
;
import
{
State
}
from
"@/types/proto/api/v1/common"
;
import
{
NodeType
}
from
"@/types/proto/api/v1/markdown_service"
;
import
{
NodeType
}
from
"@/types/proto/api/v1/markdown_service"
;
import
{
Memo
}
from
"@/types/proto/api/v1/memo_service"
;
import
{
Memo
}
from
"@/types/proto/api/v1/memo_service"
;
...
@@ -114,7 +115,11 @@ const MemoActionMenu = observer((props: Props) => {
...
@@ -114,7 +115,11 @@ const MemoActionMenu = observer((props: Props) => {
};
};
const
handleCopyLink
=
()
=>
{
const
handleCopyLink
=
()
=>
{
copy
(
`
${
window
.
location
.
origin
}
/
${
memo
.
name
}
`
);
let
host
=
workspaceStore
.
state
.
profile
.
instanceUrl
;
if
(
host
===
""
)
{
host
=
window
.
location
.
origin
;
}
copy
(
`
${
host
}
/
${
memo
.
name
}
`
);
toast
.
success
(
t
(
"message.succeed-copy-link"
));
toast
.
success
(
t
(
"message.succeed-copy-link"
));
};
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment