From 67b4b699a71081241112991926d3211dee2f0803 Mon Sep 17 00:00:00 2001 From: mtinti Date: Mon, 15 Jun 2026 19:22:07 +0100 Subject: [PATCH] Clarify cohort "Save Version" description prompt The prompt previously implied the description applied to the cohort going forward. In fact it is stored against the frozen snapshot saved at that moment, while the live configuration stays editable. Reword the dialog to match the actual behaviour. Co-Authored-By: Claude Opus 4.8 --- .../LocationsMenu/Versioning/VersioningControlUI.Designer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rdmp.UI/LocationsMenu/Versioning/VersioningControlUI.Designer.cs b/Rdmp.UI/LocationsMenu/Versioning/VersioningControlUI.Designer.cs index 9921833300..2fbe35f528 100644 --- a/Rdmp.UI/LocationsMenu/Versioning/VersioningControlUI.Designer.cs +++ b/Rdmp.UI/LocationsMenu/Versioning/VersioningControlUI.Designer.cs @@ -103,7 +103,7 @@ private void CommitNewVersion(object sender, EventArgs e) return; } var versions = _cic.GetVersions(); - var addedNewDescription = _activator.TypeText("Set Description for new Version", "Would you like to set a description for this new cohort version?", 250, _cic.Description, out string newDescription, false); + var addedNewDescription = _activator.TypeText("Describe Saved Version", "Saving a version stores a frozen snapshot of the cohort as it is now. Would you like to give that saved snapshot a description? (Your live configuration stays editable and keeps its current description.)", 250, _cic.Description, out string newDescription, false); var cmd = new ExecuteCommandCreateVersionOfCohortConfiguration(_activator, _cic, $"{_cic.Name}-v{versions.Count + 1}-{DateTime.Now.ToString("yyyy-MM-dd")}", addedNewDescription ? newDescription : null); cmd.Execute(); }