fix: hide seperator in destkop view
This commit is contained in:
parent
2a5c778235
commit
9714a8d305
1 changed files with 3 additions and 3 deletions
|
|
@ -517,9 +517,9 @@ frappe.ui.Page = class Page {
|
|||
} else {
|
||||
this.divider = parent.find(".dropdown-divider.user-action");
|
||||
if (!this.divider.length) {
|
||||
this.divider = $('<li class="dropdown-divider user-action"></li>').prependTo(
|
||||
parent
|
||||
);
|
||||
this.divider = $(
|
||||
'<li class="dropdown-divider user-action visible-xs"></li>'
|
||||
).prependTo(parent);
|
||||
}
|
||||
$li.addClass("user-action").insertBefore(this.divider);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue