Merge pull request #6707 from okriuchykhin/ok_SCI_9765

Reload item sidebar even if same item is selected [SCI-9765]
This commit is contained in:
Martin Artnik 2023-11-27 17:25:30 +01:00 committed by GitHub
commit c2170e0eaf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -314,11 +314,6 @@ export default {
this.currentItemUrl = repositoryRowUrl; this.currentItemUrl = repositoryRowUrl;
return return
} }
// click on the same item - should just open/close it
else if (this.currentItemUrl === repositoryRowUrl) {
this.isShowing = !this.isShowing;
return
}
// explicit close (from emit) // explicit close (from emit)
else if (repositoryRowUrl === null) { else if (repositoryRowUrl === null) {
this.isShowing = false; this.isShowing = false;