Skip to content
This repository has been archived by the owner on Feb 5, 2025. It is now read-only.

Commit

Permalink
conn detail & log can select (#297)
Browse files Browse the repository at this point in the history
  • Loading branch information
qianlongzt authored Oct 30, 2024
1 parent 57142e2 commit 5a525ae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/renderer/src/components/base/base-setting-item.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/src/components/logs/log-item.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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>
)
Expand Down

0 comments on commit 5a525ae

Please sign in to comment.