Skip to content

Commit 78884e3

Browse files
authored
Make logs, trace and watch have fixed height (#333)
1 parent f6ac7e0 commit 78884e3

File tree

4 files changed

+96
-73
lines changed

4 files changed

+96
-73
lines changed

portal-ui/bindata_assetfs.go

Lines changed: 93 additions & 70 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

portal-ui/src/screens/Console/Logs/Logs.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ const styles = (theme: Theme) =>
3131
createStyles({
3232
logList: {
3333
background: "white",
34-
maxHeight: "400px",
34+
height: "400px",
3535
overflow: "auto",
3636
"& ul": {
3737
margin: "4px",

portal-ui/src/screens/Console/Trace/Trace.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ const styles = (theme: Theme) =>
3131
createStyles({
3232
logList: {
3333
background: "white",
34-
maxHeight: "400px",
34+
height: "400px",
3535
overflow: "auto",
3636
"& ul": {
3737
margin: "4px",

portal-ui/src/screens/Console/Watch/Watch.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ const styles = (theme: Theme) =>
3232
createStyles({
3333
watchList: {
3434
background: "white",
35-
maxHeight: "400px",
35+
height: "400px",
3636
overflow: "auto",
3737
"& ul": {
3838
margin: "4px",

0 commit comments

Comments
 (0)