Kenyi Watanabe

Results 6 comments of 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...