Skip to content

Commit 1cc2780

Browse files
committed
fix(ui): adjust dry run validations on sgpgconfig form
1 parent fd391e3 commit 1cc2780

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

stackgres-k8s/src/admin-ui/src/components/forms/CreateSGPgConfigs.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@
253253
.update('sgpgconfigs', config, vc.dryRun)
254254
.then(function (response) {
255255
if(vc.dryRun) {
256-
vc.showSummary = !vc.loadingDefaults;
256+
vc.showSummary = true;
257257
vc.validateDryRun(response.data);
258258
} else {
259259
vc.notify('Postgres configuration <strong>"'+config.metadata.name+'"</strong> updated successfully', 'message', 'sgpgconfigs');
@@ -275,7 +275,7 @@
275275
.then(function (response) {
276276
277277
if(vc.dryRun) {
278-
vc.showSummary = !vc.loadingDefaults;
278+
vc.showSummary = true;
279279
vc.validateDryRun(response.data);
280280
} else {
281281
var urlParams = new URLSearchParams(window.location.search);

0 commit comments

Comments
 (0)