Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
worker
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Chaos Parcel Service
worker
Commits
b0946a4b
Commit
b0946a4b
authored
1 year ago
by
Tim Neumann
Browse files
Options
Downloads
Patches
Plain Diff
feat(addItemByTag): Always use lowercase tag
Resolves:
#1
parent
1ee77e34
No related branches found
No related tags found
1 merge request
!18
Merge Staging into Main
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
dist/bundle.js
+1
-1
1 addition, 1 deletion
dist/bundle.js
src/js/main.js
+2
-0
2 additions, 0 deletions
src/js/main.js
with
3 additions
and
1 deletion
dist/bundle.js
+
1
−
1
View file @
b0946a4b
This diff is collapsed.
Click to expand it.
src/js/main.js
+
2
−
0
View file @
b0946a4b
...
@@ -158,6 +158,8 @@ export async function addItemByTag(tag) {
...
@@ -158,6 +158,8 @@ export async function addItemByTag(tag) {
throw
"
Internal Error: Tag not length 6.
"
;
throw
"
Internal Error: Tag not length 6.
"
;
}
}
tag
=
tag
.
toLowerCase
();
console
.
log
(
"
Trying to add item by tag:
"
,
tag
);
console
.
log
(
"
Trying to add item by tag:
"
,
tag
);
var
response
=
await
fetch
(
config
.
backend_url
+
"
/tag/
"
+
tag
,
{
var
response
=
await
fetch
(
config
.
backend_url
+
"
/tag/
"
+
tag
,
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment