diff --git a/uSync.BackOffice/Services/SyncActionService.cs b/uSync.BackOffice/Services/SyncActionService.cs index 111c7015..6ea76634 100644 --- a/uSync.BackOffice/Services/SyncActionService.cs +++ b/uSync.BackOffice/Services/SyncActionService.cs @@ -133,7 +133,7 @@ public SyncActionResult ImportPost(SyncActionOptions options, uSyncCallbacks cal callbacks?.Update("Import Complete", 1, 1); - return new SyncActionResult(actions); + return new SyncActionResult(actions.Where(x => x.Change > Core.ChangeType.NoChange)); } public SyncActionResult ExportHandler(SyncActionOptions options, uSyncCallbacks callbacks) diff --git a/uSync.Backoffice.Assets/App_Plugins/uSync/settings/usync.controller.js b/uSync.Backoffice.Assets/App_Plugins/uSync/settings/usync.controller.js index a0145fa2..35ae0971 100644 --- a/uSync.Backoffice.Assets/App_Plugins/uSync/settings/usync.controller.js +++ b/uSync.Backoffice.Assets/App_Plugins/uSync/settings/usync.controller.js @@ -283,6 +283,11 @@ uSync8DashboardService.importPost(vm.results, options, getClientId()) .then(function (results) { + + if (results?.data?.actions) { + vm.results = vm.results.concat(results.data.actions) + } + vm.working = false; vm.reported = true; vm.perf = performance.now() - start;