Flow designer: Scripts disappear throws "Error: Unexpected usage at EditorSimpleWorkerImpl.BaseEditorSimpleWorker.loadForeignModule"SummaryFlow designer scripts disappear after save and thrown error "Error: Unexpected usage at EditorSimpleWorkerImpl.BaseEditorSimpleWorker.loadForeignModule"ReleaseQuebec Patch 3InstructionsThe max length property of the "script" field in the table "sys_hub_input_scripts" was set to 40, which is incorrect and should have been 4000. As a result of this error, the script field only saved/stored the first 40 characters. Run the following script to fix the issue: var gr = new GlideRecord("sys_dictionary");gr.addQuery("sys_id", "cb27af65db100010ea285878dc961924");gr.query();if (gr.next() ) {gr.setWorkflow(false);gr.max_length = 4000;gr.update();}