Skip to content

Commit

Permalink
Fixes #1086
Browse files Browse the repository at this point in the history
  • Loading branch information
tznind committed Apr 26, 2022
1 parent 957acc8 commit 0d1426a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

...

### Fixed

- Fixed connection strings dialog 'Save as yaml...' producing invalid entry for 'DataExportConnectionString' - [#1086](https://github.com/HicServices/RDMP/issues/1086)

## [7.0.10] - 2022-04-25

### Added
Expand Down
2 changes: 1 addition & 1 deletion Rdmp.UI/LocationsMenu/ChoosePlatformDatabasesUI.cs
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,7 @@ private void btnCreateYamlFile_Click(object sender, EventArgs e)
var toSerialize = new ConnectionStringsYamlFile()
{
CatalogueConnectionString = tbCatalogueConnectionString.Text,
DataExportConnectionString = tbDatabasePrefix.Text,
DataExportConnectionString = tbDataExportManagerConnectionString.Text,
};

var serializer = new Serializer();
Expand Down

0 comments on commit 0d1426a

Please sign in to comment.