Fix a react console error
This commit is contained in:
parent
325855ba56
commit
5a30b3fb0c
3 changed files with 4 additions and 4 deletions
2
crates/librqbit/webui/dist/assets/index.js
vendored
2
crates/librqbit/webui/dist/assets/index.js
vendored
File diff suppressed because one or more lines are too long
2
crates/librqbit/webui/dist/manifest.json
vendored
2
crates/librqbit/webui/dist/manifest.json
vendored
|
|
@ -11,7 +11,7 @@
|
|||
"css": [
|
||||
"assets/index-bc066ae5.css"
|
||||
],
|
||||
"file": "assets/index-9e7b65dd.js",
|
||||
"file": "assets/index-9469b905.js",
|
||||
"isEntry": true,
|
||||
"src": "index.html"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -204,8 +204,8 @@ export const LogStream: React.FC<LogStreamProps> = ({ url, maxLines }) => {
|
|||
</Form>
|
||||
|
||||
{logLines.map((line) => (
|
||||
<div hidden={!line.show}>
|
||||
<LogLine key={line.id} line={line.parsed} />
|
||||
<div key={line.id} hidden={!line.show}>
|
||||
<LogLine line={line.parsed} />
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue