conn detail & log can select (#297)

This commit is contained in:
Fei Yang 2024-10-30 16:58:32 +08:00 committed by GitHub
parent 57142e2181
commit 5a525aee2b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ const SettingItem: React.FC<Props> = (props) => {
return (
<>
<div className="h-[32px] w-full flex justify-between">
<div className="select-text h-[32px] w-full flex justify-between">
<div className="h-full flex items-center">
<h4 className="h-full text-md leading-[32px] whitespace-nowrap">{title}</h4>
<div>{actions}</div>

View File

@ -18,7 +18,7 @@ const LogItem: React.FC<IMihomoLogInfo & { index: number }> = (props) => {
</div>
<small className="text-foreground-500">{time}</small>
</CardHeader>
<CardBody className="pt-0 text-sm">{payload}</CardBody>
<CardBody className="select-text pt-0 text-sm">{payload}</CardBody>
</Card>
</div>
)