Skip to content
Snippets Groups Projects

feat: Work items - Close drawer when active card is clicked

Merged Vedant Jain requested to merge vedant-jain03/gitlab:issue#517393 into master
@@ -173,7 +173,6 @@ export default {
if (this.hasNextPage && this.children.length === 0) {
this.fetchNextPage();
}
this.checkDrawerParams();
},
},
workItemTypes: {
@@ -302,6 +301,16 @@ export default {
};
},
},
watch: {
'workItem.id': {
// we only want to open the drawer on initial widget load and not from drawer widget
handler(newValue, oldValue) {
if (!oldValue && newValue && !this.isDrawer) {
this.checkDrawerParams();
}
},
},
},
mounted() {
this.showLabels = getToggleFromLocalStorage(this.showLabelsLocalStorageKey);
this.showClosed = getToggleFromLocalStorage(this.showClosedLocalStorageKey);
Loading