Browse Source

a bug about "Enabled" option (#153)

* Update server.conf

Notify the client that when the server restarts so it can automatically reconnect.

* Update server.conf

* fix a bug about the user enable box.
master
QingfengLee 6 years ago committed by Chocobozzz
parent
commit
1f78116b56
  1. 2
      js/grids.js

2
js/grids.js

@ -212,7 +212,7 @@ $(function () {
formatter : checkFormatter,
events: {
'click input': function (e, value, row) {
genericSetField('user_enable', $(this).is(':checked') ? '1' : '0', row.user_id);
genericSetField('user_enable', value === '1' ? '0': '1', row.user_id);
}
}
},

Loading…
Cancel
Save