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
cf296848
Commit
cf296848
authored
Aug 25, 2025
by
Johnny
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
chore: tweak links
parent
01c6aca7
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
5 additions
and
54 deletions
+5
-54
CreateShortcutDialog.tsx
web/src/components/CreateShortcutDialog.tsx
+2
-2
MarkdownMenu.tsx
web/src/components/MemoEditor/ActionButton/MarkdownMenu.tsx
+1
-1
AccessTokenSection.tsx
web/src/components/Settings/AccessTokenSection.tsx
+0
-1
SSOSection.tsx
web/src/components/Settings/SSOSection.tsx
+1
-12
StorageSection.tsx
web/src/components/Settings/StorageSection.tsx
+0
-26
UserSessionsSection.tsx
web/src/components/Settings/UserSessionsSection.tsx
+0
-1
WebhookSection.tsx
web/src/components/Settings/WebhookSection.tsx
+1
-1
WorkspaceSection.tsx
web/src/components/Settings/WorkspaceSection.tsx
+0
-10
No files found.
web/src/components/CreateShortcutDialog.tsx
View file @
cf296848
...
...
@@ -117,7 +117,7 @@ function CreateShortcutDialog({ open, onOpenChange, shortcut: initialShortcut, o
<
li
>
<
a
className=
"text-primary hover:underline"
href=
"https://www.usememos.com/docs/g
etting-started
/shortcuts"
href=
"https://www.usememos.com/docs/g
uides
/shortcuts"
target=
"_blank"
rel=
"noopener noreferrer"
>
...
...
@@ -127,7 +127,7 @@ function CreateShortcutDialog({ open, onOpenChange, shortcut: initialShortcut, o
<
li
>
<
a
className=
"text-primary hover:underline"
href=
"https://www.usememos.com/docs/g
etting-started
/shortcuts#how-to-write-a-filter"
href=
"https://www.usememos.com/docs/g
uides
/shortcuts#how-to-write-a-filter"
target=
"_blank"
rel=
"noopener noreferrer"
>
...
...
web/src/components/MemoEditor/ActionButton/MarkdownMenu.tsx
View file @
cf296848
...
...
@@ -88,7 +88,7 @@ const MarkdownMenu = (props: Props) => {
<
div
className=
"px-2 -mt-1"
>
<
a
className=
"text-xs text-primary hover:underline"
href=
"https://www.usememos.com/docs/g
etting-started
/content-syntax"
href=
"https://www.usememos.com/docs/g
uides
/content-syntax"
target=
"_blank"
rel=
"noopener noreferrer"
>
...
...
web/src/components/Settings/AccessTokenSection.tsx
View file @
cf296848
...
...
@@ -62,7 +62,6 @@ const AccessTokenSection = () => {
<
div
className=
"sm:flex-auto space-y-1"
>
<
p
className=
"flex flex-row justify-start items-center font-medium text-muted-foreground"
>
{
t
(
"setting.access-token-section.title"
)
}
<
LearnMore
className=
"ml-2"
url=
"https://usememos.com/docs/security/access-tokens"
/>
</
p
>
<
p
className=
"text-sm text-muted-foreground"
>
{
t
(
"setting.access-token-section.description"
)
}
</
p
>
</
div
>
...
...
web/src/components/Settings/SSOSection.tsx
View file @
cf296848
import
{
MoreVerticalIcon
}
from
"lucide-react"
;
import
{
useEffect
,
useState
}
from
"react"
;
import
{
toast
}
from
"react-hot-toast"
;
import
{
Link
}
from
"react-router-dom"
;
import
{
Button
}
from
"@/components/ui/button"
;
import
{
DropdownMenu
,
DropdownMenuContent
,
DropdownMenuItem
,
DropdownMenuTrigger
}
from
"@/components/ui/dropdown-menu"
;
import
{
Separator
}
from
"@/components/ui/separator"
;
...
...
@@ -60,7 +59,7 @@ const SSOSection = () => {
<
div
className=
"w-full flex flex-row justify-between items-center gap-1"
>
<
div
className=
"flex flex-row items-center gap-1"
>
<
span
className=
"font-mono text-muted-foreground"
>
{
t
(
"setting.sso-section.sso-list"
)
}
</
span
>
<
LearnMore
url=
"https://www.usememos.com/docs/
advanced-settings/sso
"
/>
<
LearnMore
url=
"https://www.usememos.com/docs/
configuration/authentication
"
/>
</
div
>
<
Button
color=
"primary"
onClick=
{
handleCreateIdentityProvider
}
>
{
t
(
"common.create"
)
}
...
...
@@ -99,16 +98,6 @@ const SSOSection = () => {
</
div
>
)
}
<
div
className=
"w-full mt-4"
>
<
p
className=
"text-sm"
>
{
t
(
"common.learn-more"
)
}
:
</
p
>
<
ul
className=
"list-disc list-inside text-sm ml-4"
>
<
li
>
<
Link
className=
"text-sm text-primary hover:underline"
to=
"https://www.usememos.com/docs/advanced-settings/sso"
target=
"_blank"
>
{
t
(
"setting.sso-section.single-sign-on"
)
}
</
Link
>
</
li
>
</
ul
>
</
div
>
<
CreateIdentityProviderDialog
open=
{
isCreateDialogOpen
}
onOpenChange=
{
setIsCreateDialogOpen
}
...
...
web/src/components/Settings/StorageSection.tsx
View file @
cf296848
...
...
@@ -3,12 +3,10 @@ import { HelpCircleIcon } from "lucide-react";
import
{
observer
}
from
"mobx-react-lite"
;
import
React
,
{
useEffect
,
useMemo
,
useState
}
from
"react"
;
import
{
toast
}
from
"react-hot-toast"
;
import
{
Link
}
from
"react-router-dom"
;
import
{
Button
}
from
"@/components/ui/button"
;
import
{
Input
}
from
"@/components/ui/input"
;
import
{
Label
}
from
"@/components/ui/label"
;
import
{
RadioGroup
,
RadioGroupItem
}
from
"@/components/ui/radio-group"
;
import
{
Separator
}
from
"@/components/ui/separator"
;
import
{
Switch
}
from
"@/components/ui/switch"
;
import
{
Tooltip
,
TooltipContent
,
TooltipProvider
,
TooltipTrigger
}
from
"@/components/ui/tooltip"
;
import
{
workspaceStore
}
from
"@/store"
;
...
...
@@ -247,30 +245,6 @@ const StorageSection = observer(() => {
{
t
(
"common.save"
)
}
</
Button
>
</
div
>
<
Separator
className=
"my-2"
/>
<
div
className=
"w-full mt-4"
>
<
p
className=
"text-sm"
>
{
t
(
"common.learn-more"
)
}
:
</
p
>
<
ul
className=
"text-sm list-disc ml-4 space-y-1"
>
<
li
>
<
Link
className=
"text-sm text-primary hover:underline"
to=
"https://www.usememos.com/docs/advanced-settings/local-storage"
target=
"_blank"
>
Docs - Local storage
</
Link
>
</
li
>
<
li
>
<
Link
className=
"text-sm text-primary hover:underline"
to=
"https://www.usememos.com/blog/choosing-a-storage-for-your-resource"
target=
"_blank"
>
Choosing a Storage for Your Resource: Database, S3 or Local Storage?
</
Link
>
</
li
>
</
ul
>
</
div
>
</
div
>
);
});
...
...
web/src/components/Settings/UserSessionsSection.tsx
View file @
cf296848
...
...
@@ -74,7 +74,6 @@ const UserSessionsSection = () => {
<
div
className=
"sm:flex-auto space-y-1"
>
<
p
className=
"flex flex-row justify-start items-center font-medium text-muted-foreground"
>
{
t
(
"setting.user-sessions-section.title"
)
}
<
LearnMore
className=
"ml-2"
url=
"https://usememos.com/docs/security/sessions"
/>
</
p
>
<
p
className=
"text-sm text-muted-foreground"
>
{
t
(
"setting.user-sessions-section.description"
)
}
</
p
>
</
div
>
...
...
web/src/components/Settings/WebhookSection.tsx
View file @
cf296848
...
...
@@ -106,7 +106,7 @@ const WebhookSection = () => {
<
div
className=
"w-full mt-2"
>
<
Link
className=
"text-muted-foreground text-sm inline-flex flex-row justify-start items-center hover:underline hover:text-primary"
to=
"https://
usememos.com/docs/advanced-settings/webhook
"
to=
"https://
www.usememos.com/docs/integrations/webhooks
"
target=
"_blank"
>
{
t
(
"common.learn-more"
)
}
...
...
web/src/components/Settings/WorkspaceSection.tsx
View file @
cf296848
...
...
@@ -110,16 +110,6 @@ const WorkspaceSection = observer(() => {
value=
{
workspaceGeneralSetting
.
additionalScript
}
onChange=
{
(
event
)
=>
updatePartialSetting
({
additionalScript
:
event
.
target
.
value
})
}
/>
<
div
className=
"w-full"
>
<
Link
className=
"text-muted-foreground text-sm flex flex-row justify-start items-center hover:underline hover:text-primary"
to=
"https://usememos.com/docs/advanced-settings/custom-style-and-script"
target=
"_blank"
>
{
t
(
"common.learn-more"
)
}
<
ExternalLinkIcon
className=
"inline w-4 h-auto ml-1"
/>
</
Link
>
</
div
>
<
div
className=
"w-full flex flex-row justify-between items-center"
>
<
span
>
{
t
(
"setting.workspace-section.disallow-user-registration"
)
}
</
span
>
<
Switch
...
...
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