@annalib/anna-core 10.0.31 → 10.0.34

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.
@@ -3225,7 +3225,7 @@ class AnnaNonEditableGenericTableComponent {
3225
3225
  this.disableTimeFilterApplyButton();
3226
3226
  }
3227
3227
  startTimeMinChange(val) {
3228
- if (val.length != 2 || !parseInt(val) || 0 > parseInt(val) || parseInt(val) > 59) {
3228
+ if (val.length != 2 || (!+(val) && val != "00") || 0 > parseInt(val) || parseInt(val) > 59) {
3229
3229
  this.startTimeMinErr = true;
3230
3230
  }
3231
3231
  else {
@@ -3234,7 +3234,7 @@ class AnnaNonEditableGenericTableComponent {
3234
3234
  this.disableTimeFilterApplyButton();
3235
3235
  }
3236
3236
  endTimeHourChange(val) {
3237
- if (val.length == 0 || !parseInt(val) || 1 > parseInt(val) || parseInt(val) > 12) {
3237
+ if (val.length == 0 || !+(val) || 1 > parseInt(val) || parseInt(val) > 12) {
3238
3238
  this.endTimeHourErr = true;
3239
3239
  }
3240
3240
  else {
@@ -3243,7 +3243,7 @@ class AnnaNonEditableGenericTableComponent {
3243
3243
  this.disableTimeFilterApplyButton();
3244
3244
  }
3245
3245
  endTimeMinChange(val) {
3246
- if (val.length != 2 || !parseInt(val) || 0 > parseInt(val) || parseInt(val) > 59) {
3246
+ if (val.length != 2 || (!+(val) && val != "00") || 0 > parseInt(val) || parseInt(val) > 59) {
3247
3247
  this.endTimeMinErr = true;
3248
3248
  }
3249
3249
  else {