Fix parametro x validazione input datetime x net6

This commit is contained in:
Samuele Locatelli
2022-02-26 12:58:18 +01:00
parent ac0ef3f62a
commit 0e8fa72f36
+6 -1
View File
@@ -9,11 +9,16 @@ using System.Threading.Tasks;
namespace MP.Stats.Components
{
/// <summary>
/// override calsse inputdate da
/// https://github.com/dotnet/aspnetcore/issues/18078
/// </summary>
/// <typeparam name="TValue"></typeparam>
public class InputDateTime<TValue> : InputDate<TValue>
{
#region Private Fields
private const string DateFormat = "yyyy-MM-ddTHH:mm";
private const string DateFormat = "yyyy-MM-ddTHH:mm:ss";
#endregion Private Fields