Skip to content

Commit dbffd81

Browse files
committed
Format incident status
1 parent a7e9595 commit dbffd81

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/components/Agentic/IncidentDetails/AgentEvents/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ export const AgentEvents = () => {
111111
let toolName = event.tool_name;
112112

113113
if (event.mcp_name) {
114-
toolName += ` ${[event.mcp_name, "MCP tool"]
114+
toolName += ` (${[event.mcp_name, "MCP tool"]
115115
.filter(Boolean)
116116
.join(" ")})`;
117117
}

src/components/Agentic/IncidentDetails/IncidentMetaData/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ export const IncidentMetaData = () => {
104104
</s.DividerContainer>
105105
<s.Attribute>
106106
<s.AttributeLabel>Status:</s.AttributeLabel>
107-
<s.AttributeValue>{data.status}</s.AttributeValue>
107+
<s.StatusAttributeValue>{data.status}</s.StatusAttributeValue>
108108
</s.Attribute>
109109
</s.AttributesList>
110110
{data.status === "pending" && (

src/components/Agentic/common/AgentChat/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ export const AgentChat = ({
101101
let toolName = event.tool_name;
102102

103103
if (event.mcp_name) {
104-
toolName += ` ${[event.mcp_name, "MCP tool"]
104+
toolName += ` (${[event.mcp_name, "MCP tool"]
105105
.filter(Boolean)
106106
.join(" ")})`;
107107
}

0 commit comments

Comments
 (0)