mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-27 09:36:19 -05:00
FIX: users on ie/safari were unable to disable mailing list mode
This commit is contained in:
parent
0adaa8d362
commit
a544990f81
1 changed files with 2 additions and 2 deletions
|
@ -5,10 +5,10 @@ export default Em.Component.extend({
|
|||
return I18n.t(this.get('labelKey'));
|
||||
}.property('labelKey'),
|
||||
|
||||
click() {
|
||||
change() {
|
||||
const warning = this.get('warning');
|
||||
|
||||
if (warning && !this.get('checked')) {
|
||||
if (warning && this.get('checked')) {
|
||||
this.sendAction('warning');
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue