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
4de65ab5
Unverified
Commit
4de65ab5
authored
Feb 06, 2023
by
boojack
Committed by
GitHub
Feb 06, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: url encode for tag name (#1031)
parent
771ef44d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
api.ts
web/src/helpers/api.ts
+1
-1
resource.ts
web/src/utils/resource.ts
+1
-1
No files found.
web/src/helpers/api.ts
View file @
4de65ab5
...
@@ -202,7 +202,7 @@ export function upsertTag(tagName: string) {
...
@@ -202,7 +202,7 @@ export function upsertTag(tagName: string) {
}
}
export
function
deleteTag
(
tagName
:
string
)
{
export
function
deleteTag
(
tagName
:
string
)
{
return
axios
.
delete
<
ResponseObject
<
string
>>
(
`/api/tag/
${
encodeURI
(
tagName
)}
`
);
return
axios
.
delete
<
ResponseObject
<
string
>>
(
`/api/tag/
${
encodeURI
Component
(
tagName
)}
`
);
}
}
export
async
function
getRepoStarCount
()
{
export
async
function
getRepoStarCount
()
{
...
...
web/src/utils/resource.ts
View file @
4de65ab5
...
@@ -2,5 +2,5 @@ export const getResourceUrl = (resource: Resource, withOrigin = true) => {
...
@@ -2,5 +2,5 @@ export const getResourceUrl = (resource: Resource, withOrigin = true) => {
if
(
resource
.
externalLink
)
{
if
(
resource
.
externalLink
)
{
return
resource
.
externalLink
;
return
resource
.
externalLink
;
}
}
return
`
${
withOrigin
?
window
.
location
.
origin
:
""
}
/o/r/
${
resource
.
id
}
/
${
encodeURI
(
resource
.
filename
)}
`
;
return
`
${
withOrigin
?
window
.
location
.
origin
:
""
}
/o/r/
${
resource
.
id
}
/
${
encodeURI
Component
(
resource
.
filename
)}
`
;
};
};
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