Skip to content

Commit fa2931c

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 match correct format.
1 parent 8fdde47 commit fa2931c

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

.claude/settings.local.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
{
2-
"permissions": {}
3-
}
2+
"permissions": {
3+
"allow": [
4+
"Bash(jj bookmark create:*)"
5+
]
6+
}
7+
}

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)