Skip to content

Commit

Permalink
Merge pull request #12994 from carbonin/add_default_db_name_to_subscr…
Browse files Browse the repository at this point in the history
…iptions

Add a default value for the replication subscription database name
(cherry picked from commit cb34bc0)

https://bugzilla.redhat.com/show_bug.cgi?id=1402138
  • Loading branch information
mzazrivec authored and simaishi committed Jan 9, 2017
1 parent 7898c8e commit f716c43
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ ManageIQ.angular.app.controller('pglogicalReplicationFormController', ['$http',
$scope.enableSubscriptionAdd = function() {
$scope.pglogicalReplicationModel.updateEnabled = false;
$scope.pglogicalReplicationModel.addEnabled = true;
$scope.pglogicalReplicationModel.dbname = '';
$scope.pglogicalReplicationModel.dbname = 'vmdb_production';
$scope.pglogicalReplicationModel.host = '';
$scope.pglogicalReplicationModel.user = '';
$scope.pglogicalReplicationModel.password = '';
Expand Down

0 comments on commit f716c43

Please sign in to comment.