Skip to content

Commit

Permalink
improve dataset deletion dialog message
Browse files Browse the repository at this point in the history
  • Loading branch information
Neakita committed Sep 13, 2024
1 parent 7a76425 commit 334d79d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SightKeeper.Avalonia/DataSets/DataSetsViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ private async Task DeleteDataSetAsync(DataSet dataSet)
MessageBoxButtonDefinition deletionButton = new("Delete", MaterialIconKind.Delete);
MessageBoxDialogViewModel dialog = new(
"Data set deletion confirmation",
$"Are you sure you want to permanently delete the data set \"{dataSet.Name}\"?",
$"Are you sure you want to permanently delete the data set '{dataSet.Name}'? You will not be able to recover it.",
deletionButton,
new MessageBoxButtonDefinition("Cancel", MaterialIconKind.Cancel));
if (await _dialogManager.ShowDialogAsync(dialog) == deletionButton)
Expand Down

0 comments on commit 334d79d

Please sign in to comment.