backport of UI: prevent replication disable action from sending payload (#24296)
Co-authored-by: Chelsea Shaw <82459713+hashishaw@users.noreply.github.com>
This commit is contained in:
parent
63b7c27162
commit
58ce1d55db
|
@ -0,0 +1,3 @@
|
||||||
|
```release-note:bug
|
||||||
|
ui: Fix payload sent when disabling replication
|
||||||
|
```
|
|
@ -9,4 +9,11 @@ import layout from '../templates/components/replication-action-disable';
|
||||||
export default Actions.extend({
|
export default Actions.extend({
|
||||||
layout,
|
layout,
|
||||||
tagName: '',
|
tagName: '',
|
||||||
|
|
||||||
|
actions: {
|
||||||
|
onSubmit(replicationMode, clusterMode, evt) {
|
||||||
|
// No data is submitted for disable request
|
||||||
|
return this.onSubmit(replicationMode, clusterMode, null, evt);
|
||||||
|
},
|
||||||
|
},
|
||||||
});
|
});
|
||||||
|
|
|
@ -28,8 +28,8 @@
|
||||||
@isActive={{this.isModalActive}}
|
@isActive={{this.isModalActive}}
|
||||||
@confirmText={{this.model.replicationModeForDisplay}}
|
@confirmText={{this.model.replicationModeForDisplay}}
|
||||||
@toConfirmMsg="disabling {{this.model.replicationModeForDisplay}} Replication on this cluster"
|
@toConfirmMsg="disabling {{this.model.replicationModeForDisplay}} Replication on this cluster"
|
||||||
@onConfirm={{action
|
@onConfirm={{fn
|
||||||
"onSubmit"
|
(action "onSubmit")
|
||||||
"disable"
|
"disable"
|
||||||
(if (eq this.model.replicationAttrs.modeForUrl "bootstrapping") this.mode this.model.replicationAttrs.modeForUrl)
|
(if (eq this.model.replicationAttrs.modeForUrl "bootstrapping") this.mode this.model.replicationAttrs.modeForUrl)
|
||||||
}}
|
}}
|
||||||
|
|
Loading…
Reference in New Issue