6 lines
214 B
JavaScript
6 lines
214 B
JavaScript
frappe.pages['user-profile'].on_page_load = function (wrapper) {
|
|
frappe.require('user_profile_controller.bundle.js', () => {
|
|
let user_profile = new frappe.ui.UserProfile(wrapper);
|
|
user_profile.show();
|
|
});
|
|
};
|