Skip to content

Commit

Permalink
fix endpoint links in list view
Browse files Browse the repository at this point in the history
  • Loading branch information
shouya committed Nov 16, 2024
1 parent 6ee058e commit 930f9c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/web/list.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ fn endpoint_list_entry_fragment(endpoint: &EndpointConfig) -> Markup {
li {
p {
@let normalized_path = endpoint.path.trim_start_matches('/');
@let endpoint_path = format!("/_/endpoint/{}", normalized_path);
@let endpoint_path = format!("_/endpoint/{}", normalized_path);
@let endpoint_path = relative_path(&endpoint_path);
a href=(endpoint_path) {
(endpoint.path)
Expand Down

0 comments on commit 930f9c6

Please sign in to comment.