Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ export const AgentEvents = () => {
let toolName = event.tool_name;

if (event.mcp_name) {
toolName += ` ${[event.mcp_name, "MCP tool"]
toolName += ` (${[event.mcp_name, "MCP tool"]
.filter(Boolean)
.join(" ")})`;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ export const IncidentMetaData = () => {
</s.DividerContainer>
<s.Attribute>
<s.AttributeLabel>Status:</s.AttributeLabel>
<s.AttributeValue>{data.status}</s.AttributeValue>
<s.StatusAttributeValue>{data.status}</s.StatusAttributeValue>
</s.Attribute>
</s.AttributesList>
{data.status === "pending" && (
Expand Down
2 changes: 1 addition & 1 deletion src/components/Agentic/common/AgentChat/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ export const AgentChat = ({
let toolName = event.tool_name;

if (event.mcp_name) {
toolName += ` ${[event.mcp_name, "MCP tool"]
toolName += ` (${[event.mcp_name, "MCP tool"]
.filter(Boolean)
.join(" ")})`;
}
Expand Down
Loading