Skip to content

Commit 8e3aea8

Browse files
committed
Fix broken action catalog links in private actions list
Update URL base path from /workflow/action-catalog to /actions/action-catalog and fix URL construction to produce correct format: - Before: https://app.datadoghq.com/workflow/action-catalog#com.datadoghq.xxx/com.datadoghq.xxx - After: https://app.datadoghq.com/actions/action-catalog#/com.datadoghq.xxx
1 parent f7acda8 commit 8e3aea8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

layouts/partials/actions/private_actions_list.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
{{ end }}
4949
{{ end }}
5050

51-
{{ $base_url := "https://app.datadoghq.com/workflow/action-catalog#" }}
51+
{{ $base_url := "https://app.datadoghq.com/actions/action-catalog#" }}
5252

5353
{{ if lt (len $final_actions) 1}}
5454
{{ $err_msg := "On prem action list is empty" }}
@@ -67,7 +67,7 @@
6767
<p>The following integrations support private actions:</p>
6868
<ul>
6969
{{ range $fqn, $title := $final_actions -}}
70-
{{ $full_url := print $base_url $fqn "/" $fqn -}}
70+
{{ $full_url := print $base_url "/" $fqn -}}
7171
<li><a href="{{ $full_url }}">{{ $title}}</a></li>
7272
{{ end -}}
7373
</ul>

0 commit comments

Comments
 (0)