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
13395132
Commit
13395132
authored
Apr 12, 2024
by
Steven
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
chore: fix linter
parent
257b8add
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
42 deletions
+2
-42
workspace_setting_service.go
server/route/api/v2/workspace_setting_service.go
+1
-1
TagsSection.tsx
web/src/components/ExploreSidebar/TagsSection.tsx
+0
-38
TagsSection.tsx
web/src/components/HomeSidebar/TagsSection.tsx
+1
-3
No files found.
server/route/api/v2/workspace_setting_service.go
View file @
13395132
...
...
@@ -12,7 +12,7 @@ import (
"github.com/usememos/memos/store"
)
func
(
s
*
APIV2Service
)
ListWorkspaceSettings
(
ctx
context
.
Context
,
request
*
apiv2pb
.
ListWorkspaceSettingsRequest
)
(
*
apiv2pb
.
ListWorkspaceSettingsResponse
,
error
)
{
func
(
s
*
APIV2Service
)
ListWorkspaceSettings
(
ctx
context
.
Context
,
_
*
apiv2pb
.
ListWorkspaceSettingsRequest
)
(
*
apiv2pb
.
ListWorkspaceSettingsResponse
,
error
)
{
workspaceSettings
,
err
:=
s
.
Store
.
ListWorkspaceSettingsV1
(
ctx
,
&
store
.
FindWorkspaceSetting
{})
if
err
!=
nil
{
return
nil
,
status
.
Errorf
(
codes
.
Internal
,
"failed to get workspace setting: %v"
,
err
)
...
...
web/src/components/ExploreSidebar/TagsSection.tsx
deleted
100644 → 0
View file @
257b8add
import
{
useEffect
,
useState
}
from
"react"
;
import
{
tagServiceClient
}
from
"@/grpcweb"
;
import
{
Tag
}
from
"@/types/proto/api/v2/tag_service"
;
import
Icon
from
"../Icon"
;
const
TagsSection
=
()
=>
{
const
[
tags
,
setTags
]
=
useState
<
Tag
[]
>
([]);
useEffect
(()
=>
{
(
async
()
=>
{
const
{
tags
}
=
await
tagServiceClient
.
listTags
({});
setTags
(
tags
);
})();
},
[]);
return
(
tags
.
length
>
0
&&
(
<
div
className=
"w-full mt-2 flex flex-col p-2 bg-gray-50 dark:bg-black rounded-lg"
>
<
div
className=
"w-full flex flex-row justify-between items-center"
>
<
span
className=
"text-gray-400 font-medium text-sm pl-1"
>
Tags
</
span
>
</
div
>
<
div
className=
"w-full flex flex-row justify-start items-center flex-wrap"
>
{
tags
.
map
((
tag
)
=>
(
<
div
key=
{
tag
.
name
}
className=
"w-auto max-w-full px-1 flex flex-row justify-start items-center text-gray-500 hover:bg-gray-100 dark:hover:bg-zinc-900 rounded-lg"
>
<
Icon
.
Hash
className=
"w-4 h-auto opacity-80"
/>
{
tag
.
name
}
</
div
>
))
}
</
div
>
</
div
>
)
);
};
export
default
TagsSection
;
web/src/components/HomeSidebar/TagsSection.tsx
View file @
13395132
...
...
@@ -92,9 +92,7 @@ const TagsSection = () => {
)
:
(
<
div
className=
"p-2 border rounded-md flex flex-row justify-start items-start gap-1 text-gray-400 dark:text-gray-500"
>
<
Icon
.
ThumbsUp
/>
<
p
className=
"mt-0.5 text-sm leading-snug italic"
>
{
t
(
"tag.create-tags-guide"
)
}
</
p
>
<
p
className=
"mt-0.5 text-sm leading-snug italic"
>
{
t
(
"tag.create-tags-guide"
)
}
</
p
>
</
div
>
)
}
</
div
>
...
...
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