fix: logs page by the data after parsing

This commit is contained in:
jialin
2025-01-12 17:04:12 +08:00
parent 04d5b692b8
commit 0de0426f72
12 changed files with 1063 additions and 312 deletions
@@ -85,17 +85,19 @@ const ViewCodeModal: React.FC<ViewModalProps> = (props) => {
width={modalSize.width}
footer={null}
>
<LogsViewer
ref={logsViewerRef}
height={modalSize.height}
diffHeight={93}
url={url}
tail={tail}
enableScorllLoad={enableScorllLoad}
params={{
follow: true
}}
></LogsViewer>
<div className="viewer-wrapper">
<LogsViewer
ref={logsViewerRef}
height={modalSize.height}
diffHeight={93}
url={url}
tail={tail}
enableScorllLoad={enableScorllLoad}
params={{
follow: true
}}
></LogsViewer>
</div>
</Modal>
);
};