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