2
0
mirror of https://github.com/frappe/frappe.git synced 2024-06-03 03:10:49 +00:00
frappe/frappe/core/doctype/navbar_settings/navbar_settings.js
Raffael Meyer 8eb8c64fbd
fix(Navbar Settings): reload page after save (#26274)
* fix(Navbar Settings): reload page after save

* test: file uploader flake

---------

Co-authored-by: Ankush Menat <ankush@frappe.io>
2024-05-01 13:20:04 +00:00

9 lines
224 B
JavaScript

// Copyright (c) 2020, Frappe Technologies and contributors
// For license information, please see license.txt
frappe.ui.form.on("Navbar Settings", {
after_save: function (frm) {
frappe.ui.toolbar.clear_cache();
},
});