sigesp 0.8.96-20220530 → 0.8.97-20220614

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -6144,8 +6144,7 @@
6144
6144
  * @author Miguel Ramírez
6145
6145
  */
6146
6146
  SigespService.prototype.onlyNumbers = function (event) {
6147
- // console.log(event);
6148
- if (!isNaN(+event.key) || event.keyCode == 8) {
6147
+ if (!isNaN(+event.key) && event.keyCode != 32) {
6149
6148
  return true;
6150
6149
  }
6151
6150
  return false;