Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FIX] "Discussions" item in "More" menu not hidden, when Discussions are disabled (#14684) #14687

Merged
merged 1 commit into from Sep 14, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions app/discussion/client/tabBar.js
@@ -1,6 +1,7 @@
import { Meteor } from 'meteor/meteor';

import { TabBar } from '../../ui-utils/client';
import { settings } from '../../settings';
ggazzo marked this conversation as resolved.
Show resolved Hide resolved

Meteor.startup(function() {
return TabBar.addButton({
Expand All @@ -10,5 +11,6 @@ Meteor.startup(function() {
icon: 'discussion',
template: 'discussionsTabbar',
order: 10,
condition: () => settings.get('Discussion_enabled'),
});
});