There was an error while loading. Please reload this page.
1 parent 25c8ccf commit 894a722Copy full SHA for 894a722
1 file changed
internal-packages/emails/src/index.tsx
@@ -135,7 +135,8 @@ export class EmailClient {
135
}
136
case "alert-dashboard-agent-watch": {
137
return {
138
- subject: `[${data.organization}] Watch update: ${data.identity}`,
+ // The headline is the same sentence the chat and Slack use; `identity` is a key.
139
+ subject: `[${data.organization}] ${data.headline ?? `Watch update: ${data.identity}`}`,
140
component: <AlertDashboardAgentWatchEmail {...data} />,
141
};
142
0 commit comments