Actions
Bug #92935
closedDatepicker flatpickr does not allow 01-01-1970 as input
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
Backend User Interface
Target version:
-
Start date:
2020-11-25
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
11
PHP Version:
Tags:
datepicker, flatpickr, 01-01-1970
Complexity:
Is Regression:
Sprint Focus:
Description
The new datepicker (Task #91606) does not allow to input 01-01-1970
or 00:00 01-01-1970
(start of unix epoch).
Requirements¶
- current master (e.g. e3746d4454f978bb18065d9d838cbcaee4c0b49d)
Steps to reproduce¶
TCA with datepicker:
'a' => [
'config' => [
'type' => 'input',
'renderType' => 'inputDateTime',
'eval' => 'datetime',
],
],
'b' => [
'config' => [
'type' => 'input',
'renderType' => 'inputDateTime',
'eval' => 'date',
],
],
Steps:
- Try to input / select
00:00 01-01-1970
and01-01-1970
- Click outside of the input
Actual result¶
- input value gets removed and input is empty -> not able to submit the form with these values
Expected result¶
- value should not get removed / stay as other values
Actions