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
79acd3c5
Verified
Commit
79acd3c5
authored
3 years ago
by
Erwan Rouchet
Browse files
Options
Downloads
Patches
Plain Diff
Ensure RetrieveElement is called from the DetailsPanel for classifications
parent
d8f87294
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!1062
Ensure RetrieveElement is called from the DetailsPanel for classifications
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
vue/Element/DetailsPanel.vue
+5
-4
5 additions, 4 deletions
vue/Element/DetailsPanel.vue
with
5 additions
and
4 deletions
vue/Element/DetailsPanel.vue
+
5
−
4
View file @
79acd3c5
...
...
@@ -286,11 +286,12 @@ export default {
if
(
!
id
)
return
/*
* Do not retrieve the element again if it already exists in the store,
* unless it lacks the `rights` attribute: this attribute is only available from RetrieveElement,
* and some elements in the store can come from list endpoints such as those of the children tree.
* This ensures there are no strange behaviors where some actions are only sometimes disabled when they shouldn't.
* unless it lacks some of the attributes only available from RetrieveElement.
* Some elements in the store can come from list endpoints such as those of the children tree.
* This ensures there are no strange behaviors where some actions are only sometimes disabled when they shouldn't,
* or some element attributes are not displayed at all.
*/
if
(
this
.
element
?
.
id
!==
id
||
!
this
.
element
?
.
rights
)
this
.
$store
.
dispatch
(
'
elements/get
'
,
{
id
})
if
(
!
this
.
element
||
this
.
element
.
id
!==
id
||
!
this
.
element
.
rights
||
!
this
.
element
.
classifications
)
this
.
$store
.
dispatch
(
'
elements/get
'
,
{
id
})
}
},
elementType
:
{
...
...
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