Skip to content
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
2 changes: 2 additions & 0 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ jobs:
- uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
- name: Install Blazor WASM workload
run: sudo dotnet workload install wasm-tools
- run: dotnet restore WalkingTec.Mvvm.sln
- run: dotnet build WalkingTec.Mvvm.sln --no-restore -c Release

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ protected override void InitVM()

public class FrameworkUserImportVM : BaseImportVM<FrameworkUserTemplateVM, FrameworkUser>
{
public override bool BatchSaveData()
public override bool BatchSaveData(System.IProgress<WalkingTec.Mvvm.Core.ImportProgress>? progress = null)
{
SetEntityList();
foreach (var item in EntityList)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ protected override void InitVM()

public class FrameworkUserImportVM : BaseImportVM<FrameworkUserTemplateVM, FrameworkUser>
{
public override bool BatchSaveData()
public override bool BatchSaveData(System.IProgress<WalkingTec.Mvvm.Core.ImportProgress>? progress = null)
{
SetEntityList();
foreach (var item in EntityList)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ protected override void InitVM()

public class FrameworkUserImportVM : BaseImportVM<FrameworkUserTemplateVM, FrameworkUser>
{
public override bool BatchSaveData()
public override bool BatchSaveData(System.IProgress<WalkingTec.Mvvm.Core.ImportProgress>? progress = null)
{
SetEntityList();
foreach (var item in EntityList)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ protected override void InitVM()

public class FrameworkUserImportVM : BaseImportVM<FrameworkUserTemplateVM, FrameworkUser>
{
public override bool BatchSaveData()
public override bool BatchSaveData(System.IProgress<WalkingTec.Mvvm.Core.ImportProgress>? progress = null)
{
SetEntityList();
foreach (var item in EntityList)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ protected override void InitVM()

public class FrameworkUserImportVM : BaseImportVM<FrameworkUserTemplateVM, FrameworkUser>
{
public override bool BatchSaveData()
public override bool BatchSaveData(System.IProgress<WalkingTec.Mvvm.Core.ImportProgress>? progress = null)
{
SetEntityList();
foreach (var item in EntityList)
Expand Down
6 changes: 6 additions & 0 deletions global.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"sdk": {
"version": "8.0.0",
"rollForward": "latestFeature"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -5331,7 +5331,6 @@ describe('#539 renderTable — sort, pagination, sticky wrapper', () => {
expect(container.querySelector('tbody td').textContent).toBe('0');
});
});

// ─── #566 createValueInput — date field relative date mode ───────────────────
describe('#566 createValueInput — date field relative date mode', () => {
const dateMeta = {
Expand Down
Loading