mirror of
https://gh.catmak.name/https://github.com/mihomo-party-org/mihomo-party
synced 2025-12-26 20:50:30 +08:00
allow select text
This commit is contained in:
parent
1e2b0b92cc
commit
475c72fa34
@ -1,10 +1,3 @@
|
||||
### New Features
|
||||
|
||||
- 支持设置是否存储选择节点
|
||||
- 完善覆写功能指引
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- 修复单例检测与一键导入冲突的问题
|
||||
- 修复导入覆写脚本没有获取文件名的问题
|
||||
- 修复一键导入时的一些问题
|
||||
- 添加覆写脚本执行日志功能
|
||||
|
||||
@ -20,7 +20,7 @@ const ConnectionDetailModal: React.FC<Props> = (props) => {
|
||||
<ModalHeader className="flex">连接详情</ModalHeader>
|
||||
<ModalBody>
|
||||
<pre>
|
||||
<code>{JSON.stringify(connection, null, 2)}</code>
|
||||
<code className="select-text">{JSON.stringify(connection, null, 2)}</code>
|
||||
</pre>
|
||||
</ModalBody>
|
||||
<ModalFooter>
|
||||
|
||||
@ -39,7 +39,7 @@ const ExecLogModal: React.FC<Props> = (props) => {
|
||||
{logs.map((log) => {
|
||||
return (
|
||||
<>
|
||||
<small className="break-all">{log}</small>
|
||||
<small className="break-all select-text">{log}</small>
|
||||
<Divider />
|
||||
</>
|
||||
)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user