Skip to content

Commit edaa5cb

Browse files
committed
Fix #87: Export feature exports all extensions regardless of selection
1 parent 695f93b commit edaa5cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ExtensionManager.UI/ViewModels/ExportDialogViewModel.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ protected override async Task DoWorkAsync(IProgress<ProgressStep<ExportStep>> pr
2121
{
2222
_manifest.Extensions.Clear();
2323

24-
foreach (var ext in Extensions)
24+
foreach (var ext in SelectedExtensions)
2525
_manifest.Extensions.Add(ext.Model);
2626

2727
await _worker.ExportAsync(_manifest, progress, cancellationToken);

0 commit comments

Comments
 (0)