-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Display only name instead of name with link for node in message details. #20505
Conversation
@@ -71,7 +71,6 @@ class MessageShow extends React.Component { | |||
message={message} | |||
inputs={inputs} | |||
streams={streams} | |||
nodes={nodes} | |||
renderForDisplay={this.renderForDisplay} | |||
showTimestamp /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nodes
are currently nod provided by components which implement this component.
I did not migrate it to TS, because I want to keep the backport simple.
|
||
nodeInformation = AppConfig.isCloud() | ||
? nodeContent | ||
: <a href={nodeURL}>{nodeContent}</a>; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Here we were already considering the cloud env.
Description
Motivation and Context
This PR is fixing two problems:
Please note, this PR needs a backport for
5.2
and6.0
Fix #20464