Fix notification text not including export filename

This commit is contained in:
Dean Herbert 2023-05-05 16:53:27 +09:00
parent 9cafb20fcb
commit fc2d2de34c
1 changed files with 1 additions and 1 deletions

View File

@ -112,7 +112,7 @@ public async Task<bool> ExportAsync(Live<TModel> model, CancellationToken cancel
ProgressNotification notification = new ProgressNotification
{
State = ProgressNotificationState.Active,
Text = "Exporting...",
Text = $"Exporting {itemFilename}...",
};
PostNotification?.Invoke(notification);