Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.4.5
3.4.7
2 changes: 1 addition & 1 deletion src/http/commands/help/presenter.rb
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ def render_html_list(data, skip_wrapper: false)
def foobara_reference_link(manifest)
path = "/help/#{manifest.reference}"

"<a href=\"#{path}\">#{manifest.reference.split("::").last}</a>"
"<li><a href=\"#{path}\">#{manifest.reference.split("::").last}</a></li>"
Copy link
Contributor

@azimux azimux Nov 14, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we should relocate this to line 153 since that's where these commands are rendered and are missing their <li> tags, as opposed to here which might be called outside of a context where an <li> is needed.

end

def root_manifest
Expand Down