chore: logs style

This commit is contained in:
jialin
2024-10-20 10:40:17 +08:00
parent 386f2969eb
commit d6fd498489
7 changed files with 369 additions and 205 deletions
@@ -6,6 +6,7 @@ import React, { useEffect, useState } from 'react';
type ViewModalProps = {
open: boolean;
url: string;
autoScroll?: boolean;
onCancel: () => void;
};
@@ -65,6 +66,7 @@ const ViewCodeModal: React.FC<ViewModalProps> = (props) => {
<LogsViewer
height={modalSize.height}
url={url}
autoScroll={props.autoScroll}
params={{
follow: true
}}