summaryrefslogtreecommitdiffstats
path: root/ui/src/components/comment-form.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'ui/src/components/comment-form.tsx')
-rw-r--r--ui/src/components/comment-form.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/src/components/comment-form.tsx b/ui/src/components/comment-form.tsx
index 57518a13..b4cc03a4 100644
--- a/ui/src/components/comment-form.tsx
+++ b/ui/src/components/comment-form.tsx
@@ -47,7 +47,7 @@ export class CommentForm extends Component<CommentFormProps, CommentFormState> {
{
trigger: '@',
selectTemplate: (item: any) => {
- return `[/u/${item.original.key}](${window.location.origin}/u/${item.original.key})`;
+ return `[/u/${item.original.key}](/u/${item.original.key})`;
},
values: (text: string, cb: any) => {
this.userSearch(text, users => cb(users));
@@ -59,7 +59,7 @@ export class CommentForm extends Component<CommentFormProps, CommentFormState> {
{
trigger: '#',
selectTemplate: (item: any) => {
- return `[/c/${item.original.key}](${window.location.origin}/c/${item.original.key})`;
+ return `[/c/${item.original.key}](/c/${item.original.key})`;
},
values: (text: string, cb: any) => {
this.communitySearch(text, communities => cb(communities));