You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
jyn514 opened this issue
Nov 27, 2019
· 1 comment
· Fixed by #76052
Labels
C-bugCategory: This is a bug.E-easyCall for participation: Easy difficulty. Experience needed to fix: Not much. Good first issue.T-rustdocRelevant to the rustdoc team, which will review and decide on the PR/issue.
This seems to have been caused by #66298, which disabled the search bar by default. The logic to reenable search was a little buggy - getSearchElement() looks for an element with the 'search' id, but that ID is not set when --disable-per-crate-search is enabled.
Passing --disable-per-crate-search removes the create search
inputs so moved code around so that the search input is enabled
first before the function returns
…ribute_before_return, r=GuillaumeGomez
rust-langGH-66816: Remove disable attr before return
Passing --disable-per-crate-search removes the create search inputs so moved code around so that the search input is enabled
first before the function returns.
Fixesrust-lang#66816
C-bugCategory: This is a bug.E-easyCall for participation: Easy difficulty. Experience needed to fix: Not much. Good first issue.T-rustdocRelevant to the rustdoc team, which will review and decide on the PR/issue.
docs.rs ran into this this morning, see rust-lang/docs.rs#497.
This seems to have been caused by #66298, which disabled the search bar by default. The logic to reenable search was a little buggy -
getSearchElement()
looks for an element with the 'search' id, but that ID is not set when--disable-per-crate-search
is enabled.Steps to replicate:
cc @QuietMisdreavus @GuillaumeGomez
The text was updated successfully, but these errors were encountered: