Kenyi Watanabe
Kenyi Watanabe
In order to use this on Nuxt (serverside) I'm using this facade ``` import { jsPDF as _jsPDF } from "jspdf"; import autoTable from "jspdf-autotable"; import type { jsPDFOptions }...
This has been solved in https://github.com/Unitech/pm2/pull/5524 https://github.com/Unitech/pm2/releases/tag/5.3.0
https://github.com/wobsoriano/nuxt-remote-fn is also affected But the issue appears to be resolved on the edge channel, at least for this module - Operating System: `Windows 10` - Node Version: `v18.13.0` -...
My current workaround 1. Add a custom json field `previous` 2. Add `before_rename` server script ```py doc.previous = None frappe.db.set_value('Item', doc.name, 'previous', as_json({'name': doc.name})) ``` 3. Add `after_rename` server script...
I can do Spanish Also, could the Translation DocType be enabled on the desk side to apply temporary translations in the meantime? Or are there any current workaround for translations?...
I propose using the full (relative) path to the file when extracting the module id ```ts // current expect(getModuleId('/src/feature-A/todo.server.ts')).toBe('todo') // proposed expect(getModuleId('/src/feature-A/todo.server.ts')).toBe('feature_A__todo') ``` The path would be relative the source...
I have this issue too, fresh installation with frappe docker
You can show your own breadcrumbs with client scripts https://github.com/frappe/frappe/blob/develop/frappe/public/js/frappe/views/breadcrumbs.js ```js frappe.breadcrumbs.clear() frappe.breadcrumbs.append_breadcrumb_element('route', 'label') ```
Override `frappe.breadcrumbs.update` with the behavior you want. How to inject custom js varies depending how you are deploying the app.
Javascript can be injected per doctype (client scripts), site or app - Doctype: https://frappeframework.com/docs/user/en/desk/scripting/client-script - Site: https://frappeframework.com/docs/user/en/basics/site_config#optional-settings - App: https://frappeframework.com/docs/user/en/python-api/hooks#desk If you want to add a few customizations to some...