Просмотр исходного кода

made small fix with date-local

unknown 3 лет назад
Родитель
Сommit
9d3fde89ff
1 измененных файлов с 5 добавлено и 0 удалено
  1. 5 0
      javascript/hw.js

+ 5 - 0
javascript/hw.js

@@ -207,6 +207,10 @@ function Form(el, data, okCallback, cancelCallback) {
 			return placeholder;
 			return placeholder;
 		},
 		},
 		string(key, value, handelInput) {
 		string(key, value, handelInput) {
+			const dataTime = new Date(value);
+			if (dataTime.getDate())
+				return inputCreators.object(key, value, handelInput);
+
 			if (value === '*') {
 			if (value === '*') {
 				return inputCreators.placeholder(
 				return inputCreators.placeholder(
 					key,
 					key,
@@ -411,6 +415,7 @@ function Form(el, data, okCallback, cancelCallback) {
 const cachedFetchStarWars = async () => {
 const cachedFetchStarWars = async () => {
 	const lc = await localStorage.getItem('data');
 	const lc = await localStorage.getItem('data');
 	if (lc) return JSON.parse(lc);
 	if (lc) return JSON.parse(lc);
+
 	const data = await fetch('https://swapi.dev/api/people/1/')
 	const data = await fetch('https://swapi.dev/api/people/1/')
 		.then((res) => res.json())
 		.then((res) => res.json())
 		.then((data) => {
 		.then((data) => {