Skip to content

Commit

Permalink
[fix-9785][UI Next][dev] dynamic change height in viewlog when full s…
Browse files Browse the repository at this point in the history
…creen (#9788)
  • Loading branch information
rockfang authored Apr 27, 2022
1 parent b2d21ae commit 8fab44c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion dolphinscheduler-ui-next/src/components/log-modal/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,12 @@ export default defineComponent({
}
])}
>
<NLog rows={30} log={this.logRef} loading={this.logLoadingRef} />
<NLog
rows={30}
log={this.logRef}
loading={this.logLoadingRef}
style={{ height: isFullscreen ? 'calc(100vh - 140px)' : '525px' }}
/>
</Modal>
)
}
Expand Down

0 comments on commit 8fab44c

Please sign in to comment.