Skip to content

Commit e1d8841

Browse files
fix: resolve discord investigate link not rendering (#1985)
Signed-off-by: Emmanuel Ferdman <emmanuelferdman@gmail.com> Co-authored-by: arik <alon.arik@gmail.com>
1 parent e024114 commit e1d8841

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/robusta/integrations/discord/sender.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ def _get_actions_block(self, finding: Finding, platform_enabled: bool) -> Option
297297
actions: list[str] = []
298298
if platform_enabled: # add link to the robusta ui, if it's configured
299299
actions.append(
300-
"[:mag_right: Investigate]({finding.get_investigate_uri(self.account_id, self.cluster_name)})"
300+
f"[:mag_right: Investigate]({finding.get_investigate_uri(self.account_id, self.cluster_name)})"
301301
)
302302
if finding.add_silence_url:
303303
actions.append(

0 commit comments

Comments
 (0)