fix: Hide tooltip on route change (#12579)
This commit is contained in:
parent
6ed9567b8c
commit
ac0d6243f3
1 changed files with 3 additions and 0 deletions
|
|
@ -173,6 +173,9 @@ frappe.Application = Class.extend({
|
|||
frappe.router.route();
|
||||
}
|
||||
frappe.after_ajax(() => frappe.flags.setting_original_route = false);
|
||||
frappe.router.on('change', () => {
|
||||
$(".tooltip").hide();
|
||||
});
|
||||
},
|
||||
|
||||
setup_frappe_vue() {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue