Skip to content

Commit

Permalink
fix process name copy
Browse files Browse the repository at this point in the history
  • Loading branch information
xishang0128 committed Nov 23, 2024
1 parent 22c35b6 commit 9e4b853
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ const ConnectionDetailModal: React.FC<Props> = (props) => {
title="进程名"
value={[
connection.metadata.process,
connection.metadata.uid ? connection.metadata.uid.toString() : ''
...(connection.metadata.uid ? [connection.metadata.uid.toString()] : [])
]}
displayName={`${connection.metadata.process}${connection.metadata.uid ? `(${connection.metadata.uid})` : ''}`}
prefix={['PROCESS-NAME', 'UID']}
Expand Down

0 comments on commit 9e4b853

Please sign in to comment.