Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
thanksd
funkwhale
Commits
815fbc81
Commit
815fbc81
authored
Jun 22, 2021
by
Georg Krause
Browse files
Merge branch '1427-duplicate-tag' into 'develop'
Only suggest existing tag once See merge request
funkwhale/funkwhale!1301
parents
e11f7edf
263e29df
Changes
2
Hide whitespace changes
Inline
Side-by-side
changes/changelog.d/1427.bugfix
0 → 100644
View file @
815fbc81
Only suggest typed tag once if it already exists
front/src/components/library/TagsSelector.vue
View file @
815fbc81
...
...
@@ -52,7 +52,16 @@ export default {
...
response
,
}
if
(
currentSearch
)
{
response
.
results
=
[{
name
:
currentSearch
},
...
response
.
results
]
let
existingTag
=
response
.
results
.
find
((
result
)
=>
result
.
name
===
currentSearch
)
if
(
existingTag
)
{
if
(
response
.
results
.
indexOf
(
existingTag
)
!==
0
)
{
response
.
results
=
[
existingTag
,
...
response
.
results
]
response
.
results
.
splice
(
response
.
results
.
indexOf
(
existingTag
)
+
1
,
1
)
}
}
else
{
response
.
results
=
[{
name
:
currentSearch
},
...
response
.
results
]
}
}
return
response
}
...
...
Write
Preview
Supports
Markdown
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