Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Frontend
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Arkindex
Frontend
Commits
009e1d05
Commit
009e1d05
authored
2 years ago
by
ml bonhomme
Browse files
Options
Downloads
Patches
Plain Diff
Allow manually adding a class that's already been added by a worker
parent
3c049c8d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!1294
Allow manually adding a class that's already been added by a worker
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
vue/Element/DetailsPanel.vue
+1
-1
1 addition, 1 deletion
vue/Element/DetailsPanel.vue
with
1 addition
and
1 deletion
vue/Element/DetailsPanel.vue
+
1
−
1
View file @
009e1d05
...
...
@@ -153,7 +153,7 @@ export default {
return
this
.
selectedNewClassification
&&
this
.
element
&&
this
.
element
.
classifications
&&
this
.
element
.
classifications
.
find
(
c
=>
c
.
ml_class
.
id
===
this
.
selectedNewClassification
)
this
.
element
.
classifications
.
find
(
c
=>
(
c
.
ml_class
.
id
===
this
.
selectedNewClassification
&&
!
c
.
worker_version
)
)
},
canCreateClassification
()
{
return
this
.
element
&&
this
.
selectedNewClassification
&&
!
this
.
manualClassificationExists
&&
!
this
.
isSavingNewClassification
...
...
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