Fixed the issue of sidebar only one tab at one time issue

This commit is contained in:
Deepak Singh Gusain 2022-01-20 19:27:32 +05:30
parent 0c33f85f61
commit b8cc78e971
1 changed files with 5 additions and 5 deletions

View File

@ -80,12 +80,12 @@
mounted(){
$('.menubar-ancor').click(function(){
var tabname = this.children[1].innerHTML;
$('.menu-item').click(function(){
$('.menu-item').removeClass('active');
if (tabname != 'Dashboard') {
this.parentElement.classList.toggle('active');
this.children[2].classList.toggle("rotate-arrow-icon");
if (this.children[0].children[1].innerHTML != 'Dashboard') {
this.classList.toggle('active');
this.children[0].children[2].classList.toggle("rotate-arrow-icon");
}
});
},