Skip to content

Commit

Permalink
add space after play button on resume
Browse files Browse the repository at this point in the history
  • Loading branch information
jdrews committed Mar 20, 2023
1 parent 2966095 commit 35ea974
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion web/src/LogStationLogViewer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,14 @@ const LogStationLogViewer = (props) => {
return (
<Button onClick={handleClick} isBlock>
<OutlinedPlayCircleIcon />
{" "}
resume
{/*resume {linesBehind === 0 ? null : `and show ${linesBehind} lines`}*/}
</Button>
);
};

return (
return ( //TODO: Tracking line wrap overflow bug in https://github.com/patternfly/react-log-viewer/issues/3
<LogViewer hasLineNumbers={false}
height={'100%'}
width={'100%'}
Expand All @@ -67,6 +68,7 @@ const LogStationLogViewer = (props) => {
onScroll={onScroll}
footer={isPaused && <FooterButton />}
//TODO: disabled search for now. Will come back to it.
//TODO: put the search in the top bar on the right. Good place for it.
// toolbar={
// <Toolbar>
// <ToolbarContent>
Expand Down

0 comments on commit 35ea974

Please sign in to comment.