@annalib/anna-core 20.0.6 → 20.0.8
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.
|
@@ -2407,10 +2407,10 @@ class AnnaFilterService {
|
|
|
2407
2407
|
}
|
|
2408
2408
|
}
|
|
2409
2409
|
isHourValueInvalid(hr) {
|
|
2410
|
-
return (hr.length == 0 || !+(hr) || 1 > parseInt(hr) || parseInt(hr) > 12);
|
|
2410
|
+
return (hr.length == 0 || !+(hr) || 1 > parseInt(hr) || parseInt(hr) > 12 || hr.includes('.'));
|
|
2411
2411
|
}
|
|
2412
2412
|
isMinuteValueInvalid(min) {
|
|
2413
|
-
return (min.length != 2 || (!+(min) && min != "00") || 0 > parseInt(min) || parseInt(min) > 59);
|
|
2413
|
+
return (min.length != 2 || (!+(min) && min != "00") || 0 > parseInt(min) || parseInt(min) > 59 || min.includes('.'));
|
|
2414
2414
|
}
|
|
2415
2415
|
//=============================================================SORT======================================================================//
|
|
2416
2416
|
updateSortMap(tempSortOrder, tableData, isLurAndCsrComponent) {
|