Fix zero time issue when updating time sheets
This commit is contained in:
@@ -807,7 +807,7 @@ QtsheetAdapter.method('validateCellValue', function(element, evt, newValue) {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
var val = parseFloat(newValue);
|
var val = parseFloat(newValue);
|
||||||
if(val <= 0 || val > 24){
|
if(val < 0 || val > 24){
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user