Skip to content
This repository was archived by the owner on Jul 22, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all 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
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export default {
class AiConversationsSidebarPanel extends BaseCustomSidebarPanel {
key = AI_CONVERSATIONS_PANEL;
hidden = true;
displayHeader = !navigationMenu.isHeaderDropdownMode;
displayHeader = false; // this would add a misplaced back to forum button
expandActiveSection = true;
}
);
Expand Down
4 changes: 2 additions & 2 deletions spec/system/ai_bot/homepage_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -320,9 +320,9 @@
expect(ai_pm_homepage.llm_selector).to have_selected_name(claude_2_dup.display_name)
end

it "renders back to forum link" do
it "does not render back to forum link" do
ai_pm_homepage.visit
expect(ai_pm_homepage).to have_sidebar_back_link
expect(ai_pm_homepage).to have_no_sidebar_back_link
end

context "with hamburger menu" do
Expand Down
Loading