fix: markdown view \n do not work

This commit is contained in:
jialin
2025-08-13 19:50:54 +08:00
parent 0af8e34a8f
commit 2ca712435a
7 changed files with 37 additions and 13 deletions
@@ -255,7 +255,7 @@ const LogsViewer: React.FC<LogsViewerProps> = forwardRef((props, ref) => {
return () => {
chunkRequedtRef.current?.current?.abort?.();
};
}, [url]);
}, [url, isDownloading]);
useEffect(() => {
debouncedScroll();
@@ -357,4 +357,4 @@ const LogsViewer: React.FC<LogsViewerProps> = forwardRef((props, ref) => {
);
});
export default React.memo(LogsViewer);
export default LogsViewer;