mirror of
https://github.com/rowyio/rowy.git
synced 2025-12-29 00:16:39 +01:00
Merge pull request #939 from ganeshmani/fix/derivative-column-collapse
fix: Build logs collapse by default
This commit is contained in:
@@ -107,7 +107,7 @@ export default function BuildLogsSnack({
|
||||
borderRadius: 1,
|
||||
zIndex: 1,
|
||||
transition: (theme) => theme.transitions.create("height"),
|
||||
height: expanded ? "calc(100% - 300px)" : 300,
|
||||
height: expanded ? "calc(100% - 300px)" : 50,
|
||||
}}
|
||||
>
|
||||
<Box display="flex" justifyContent="space-between" alignItems="center">
|
||||
@@ -178,7 +178,7 @@ export default function BuildLogsSnack({
|
||||
height={"calc(100% - 25px)"}
|
||||
id="live-stream-scroll-box-snack"
|
||||
>
|
||||
{latestActiveLog && (
|
||||
{latestActiveLog && expanded && (
|
||||
<>
|
||||
{logs?.map((log: any, index: number) => (
|
||||
<BuildLogRow logRecord={log} index={index} key={index} />
|
||||
|
||||
Reference in New Issue
Block a user