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
526fbbba
Unverified
Commit
526fbbba
authored
Mar 29, 2023
by
CorrectRoadH
Committed by
GitHub
Mar 29, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: empty selected resource when search resource (#1423)
* feat: empty selected resource when search resource * eslint
parent
993ea024
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
ResourcesDashboard.tsx
web/src/pages/ResourcesDashboard.tsx
+6
-1
No files found.
web/src/pages/ResourcesDashboard.tsx
View file @
526fbbba
...
...
@@ -150,6 +150,11 @@ const ResourcesDashboard = () => {
toast
.
success
(
t
(
"message.succeed-copy-resource-link"
));
};
const
handleSearchResourceInputChange
=
(
query
:
string
)
=>
{
setQueryText
(
query
);
setSelectedList
([]);
};
const
resourceList
=
useMemo
(
()
=>
resources
...
...
@@ -233,7 +238,7 @@ const ResourcesDashboard = () => {
<
p
className=
"flex flex-row justify-start items-center select-none rounded"
>
<
Icon
.
Paperclip
className=
"w-5 h-auto mr-1"
/>
{
t
(
"common.resources"
)
}
</
p
>
<
ResourceSearchBar
setQuery=
{
setQueryText
}
/>
<
ResourceSearchBar
setQuery=
{
handleSearchResourceInputChange
}
/>
</
div
>
<
div
className=
"w-full flex flex-row justify-end items-center space-x-2 mt-3 z-1"
>
{
isVisible
&&
(
...
...
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