When I debug the UI of the n8n node panel and its corresponding TS logic, it does not update in real-time on the browser;
For example
I want to debug the getJsonValue method in editor-ui/src/components/RunDataJsonActions.vue.
The console.log does not update in the browser in real-time. How should I debug it?
Information on your n8n setup
**n8n version: 1.14.2
Database (default: SQLite):
**n8n EXECUTIONS_PROCESS setting (default: own, main): own
**Running n8n via (Docker, npm, n8n cloud, desktop app): npm
Are you running n8n using the watch or dev command? Some of it does depend on what you are working on but I think our frontend team run the UI separatly which seems to work for them.
But whether I visit localhost:5678 or localhost:8080, the UI does not update in real-time unless I rebuild it in the n8n directory.
This method is not convenient for real-time debugging of node panel code.
Because I encountered a problem: copying the JSON format in the output panel of the node, the copied content may change in some cases (in my case, it is access-token). This is caused by the clearJsonKey method. I want to debug it.