private async Task OnOpenUpdateWindowExecuteAsync()
        {
            if (AvailableUpdates == null)
            {
                return;
            }

            await TaskHelper.Run(() => _packageBatchService.ShowPackagesBatch(AvailableUpdates, PackageOperationType.Update), true);
        }