Fix buffer and buffer list padding
This commit is contained in:
parent
f8c4d1746c
commit
78002c22ee
2 changed files with 13 additions and 8 deletions
|
@ -87,5 +87,11 @@ export default function Buffer(props) {
|
|||
return null;
|
||||
}
|
||||
|
||||
return props.buffer.messages.map((msg) => html`<${LogLine} message=${msg}/>`);
|
||||
return html`
|
||||
<div class="logline-list">
|
||||
${props.buffer.messages.map((msg) => html`
|
||||
<${LogLine} message=${msg}/>
|
||||
`)}
|
||||
</div>
|
||||
`;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue