mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
FIX: Multiple channels marked active in sidebar (#21045)
Followup to c1dc6a2db4,
this commit just missed removing one of the @computed
decorators which was causing multiple active channels
to show in the sidebar. Fix the issue and introduce a
system spec to catch this.
This commit is contained in:
@@ -242,12 +242,29 @@ RSpec.describe "Navigation", type: :system, js: true do
|
||||
end
|
||||
|
||||
context "when opening a channel in full page" do
|
||||
fab!(:other_user) { Fabricate(:user) }
|
||||
fab!(:dm_channel) { Fabricate(:direct_message_channel, users: [user, other_user]) }
|
||||
|
||||
it "activates the channel in the sidebar" do
|
||||
visit("/chat/c/#{category_channel.slug}/#{category_channel.id}")
|
||||
expect(page).to have_css(
|
||||
".sidebar-section-link-#{category_channel.slug}.sidebar-section-link--active",
|
||||
)
|
||||
end
|
||||
|
||||
it "does not have multiple channels marked active in the sidebar" do
|
||||
chat_page.visit_channel(dm_channel)
|
||||
expect(page).to have_css(
|
||||
".sidebar-section-link-#{other_user.username}.sidebar-section-link--active",
|
||||
)
|
||||
|
||||
page.find(".sidebar-section-link-#{category_channel.slug}").click
|
||||
expect(page).to have_css(
|
||||
".sidebar-section-link-#{category_channel.slug}.sidebar-section-link--active",
|
||||
)
|
||||
|
||||
expect(page).to have_css(".sidebar-section-link--active", count: 1)
|
||||
end
|
||||
end
|
||||
|
||||
context "when going back to channel from channel settings in full page" do
|
||||
|
||||
Reference in New Issue
Block a user