Open theredwillow opened 10 months ago
There's a bug on the very first attempt to open this. I have included the console log as the title. Below is the part of the
client/js/dist/index.js
file that appears to be causing the issue.function submit(endpoint, data, event_data) { let fn_index; let api_info; if (typeof endpoint === "number") { fn_index = endpoint; api_info = api.unnamed_endpoints[fn_index]; } else { const trimmed_endpoint = endpoint.replace(/^\//, ""); fn_index = api_map[trimmed_endpoint]; api_info = api.named_endpoints[endpoint.trim()]; }
i do not think this is bug in this extension, look like from A111 or gradio.
There's a bug on the very first attempt to open this. I have included the console log as the title. Below is the part of the
client/js/dist/index.js
file that appears to be causing the issue.