We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e67e575 commit a0e8710Copy full SHA for a0e8710
src/Web/MASA.PM.Web.Admin/Pages/Home/ProjectModal.razor.cs
@@ -1,6 +1,8 @@
1
// Copyright (c) MASA Stack All rights reserved.
2
// Licensed under the Apache License. See LICENSE.txt in the project root for license information.
3
4
+using Newtonsoft.Json;
5
+
6
namespace MASA.PM.Web.Admin.Pages.Home
7
{
8
public partial class ProjectModal
@@ -131,6 +133,9 @@ private async Task RemoveProjectAsync()
131
133
132
134
private async Task SubmitProjectAsync(FormContext context)
135
136
+ await Console.Out.WriteLineAsync($"Data:{JsonConvert.SerializeObject(_projectFormModel)}");
137
+ await Console.Out.WriteLineAsync($"Validate:{context.Validate()}");
138
139
if (context.Validate())
140
141
if (!_projectFormModel.HasValue)
0 commit comments