Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update packages #26

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
addOrUpdateActionDialog.ShowSaveDialog(item, (i) =>
{
viewModel.Children.Remove(item);
viewModel.Children.Add(AddOrUpdateEventActionView.ViewModel.GetEventAction());
viewModel.Children.Add(AddOrUpdateEventActionView.ViewModel.GetEventAction(i));
return true;
}, () =>
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<MudRTLProvider RightToLeft="BaseViewModel.IsRightToLeft">
<MudNavLink Href="@viewModel.FormItem.DefaultValue">
@viewModel.FormItem.Title"
@viewModel.FormItem.Title
@foreach (var formItem in viewModel.FormItem?.Items?.OrderBy(x => x.Index))
{
<FormItemSingleItemGenerator FormItem="@formItem" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="EasyMicroservices.TemplateGeneratorMicroservice.Clients" Version="0.0.0.27" />
<PackageReference Include="EasyMicroservices.TemplateGeneratorMicroservice.Clients" Version="0.0.0.29" />
<PackageReference Include="EasyMicroservices.UI.Cores.Mvvm" Version="0.0.0.23" />
<PackageReference Include="EasyMicroservices.Utilities" Version="*" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
public int Length { get; set; } = 50;
public int TotalCount { get; set; }

public async Task Refresh()

Check warning on line 37 in src/CSharp/Cores/EasyMicroservices.UI.TemplateGenerator.ViewModels/ViewModels/Actions/AddOrUpdateEventActionViewModel.cs

View workflow job for this annotation

GitHub Actions / os-tests

This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.

Check warning on line 37 in src/CSharp/Cores/EasyMicroservices.UI.TemplateGenerator.ViewModels/ViewModels/Actions/AddOrUpdateEventActionViewModel.cs

View workflow job for this annotation

GitHub Actions / os-tests

This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.

Check warning on line 37 in src/CSharp/Cores/EasyMicroservices.UI.TemplateGenerator.ViewModels/ViewModels/Actions/AddOrUpdateEventActionViewModel.cs

View workflow job for this annotation

GitHub Actions / os-tests

This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
{
//var filteredResult = await _actionClient.FilterAsync(new FilterRequestContract()
//{
Expand Down Expand Up @@ -69,7 +69,7 @@
public FormItemEventActionContract GetEventAction(FormItemEventActionContract update)
{
var result = GetEventAction();
//result.Id = update.Id;
result.Id = update.Id;
return result;
}

Expand Down
Loading