diff --git a/changelog.md b/changelog.md index bbece82..4db6d2f 100644 --- a/changelog.md +++ b/changelog.md @@ -1,10 +1,3 @@ ### New Features -- 支持设置是否存储选择节点 -- 完善覆写功能指引 - -### Bug Fixes - -- 修复单例检测与一键导入冲突的问题 -- 修复导入覆写脚本没有获取文件名的问题 -- 修复一键导入时的一些问题 +- 添加覆写脚本执行日志功能 diff --git a/src/renderer/src/components/connections/connection-detail-modal.tsx b/src/renderer/src/components/connections/connection-detail-modal.tsx index c0a3c54..216041f 100644 --- a/src/renderer/src/components/connections/connection-detail-modal.tsx +++ b/src/renderer/src/components/connections/connection-detail-modal.tsx @@ -20,7 +20,7 @@ const ConnectionDetailModal: React.FC = (props) => { 连接详情
-            {JSON.stringify(connection, null, 2)}
+            {JSON.stringify(connection, null, 2)}
           
diff --git a/src/renderer/src/components/override/exec-log-modal.tsx b/src/renderer/src/components/override/exec-log-modal.tsx index 61e7a26..4354a74 100644 --- a/src/renderer/src/components/override/exec-log-modal.tsx +++ b/src/renderer/src/components/override/exec-log-modal.tsx @@ -39,7 +39,7 @@ const ExecLogModal: React.FC = (props) => { {logs.map((log) => { return ( <> - {log} + {log} )