mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-13 04:45:19 +00:00
refactor(lint): code lint
This commit is contained in:
parent
dc04123330
commit
b61ea393b4
1 changed files with 3 additions and 1 deletions
|
|
@ -748,7 +748,9 @@
|
|||
onSourceClick={async (id, idx) => {
|
||||
console.log(id, idx);
|
||||
let sourceButton = document.getElementById(`source-${message.id}-${idx}`);
|
||||
const sourcesCollapsible = document.getElementById(`collapsible-${message.id}`);
|
||||
const sourcesCollapsible = document.getElementById(
|
||||
`collapsible-${message.id}`
|
||||
);
|
||||
|
||||
if (sourceButton) {
|
||||
sourceButton.click();
|
||||
|
|
|
|||
Loading…
Reference in a new issue