We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4d8f2a commit c75cf2dCopy full SHA for c75cf2d
backend/files/system/openai/front.files/chat/modern.js
@@ -314,7 +314,9 @@
314
315
// Removing text of upload file button.
316
const lbl = document.getElementById('ainiro_filename_label');
317
- lbl.innerHTML = '';
+ if (lbl) {
318
+ lbl.innerHTML = '';
319
+ }
320
});
321
attRem.innerHTML = '<i class="ainiro-icofont-duotone ainiro-icofont-purge ainiro-icofont-lg"></i>';
322
chatForm.appendChild(attRem);
@@ -1188,7 +1190,9 @@
1188
1190
1189
1191
1192
1193
1194
1195
1196
1197
// Adding query to surface.
1198
this.addMessage(txtEl.value, 'ainiro_human');
0 commit comments