FEATURE: Always show tag dropdown when tagging is enabled (#12209)

This commit is contained in:
Kris
2021-03-10 21:13:15 -05:00
committed by GitHub
parent b81bb2f93b
commit 83519e7f3a
11 changed files with 27 additions and 45 deletions

View File

@ -636,14 +636,6 @@ describe TopicTrackingState do
expect(row.tags).to contain_exactly("apples", "bananas")
TopicTrackingState.include_tags_in_report = false
SiteSetting.show_filter_by_tag = true
report = TopicTrackingState.report(user)
expect(report.length).to eq(1)
row = report[0]
expect(row.tags).to contain_exactly("apples", "bananas")
SiteSetting.show_filter_by_tag = false
report = TopicTrackingState.report(user)
expect(report.length).to eq(1)