33 lines
1.4 KiB
Diff
33 lines
1.4 KiB
Diff
From b216b86c5607dc0421eb609c46f3004844fb37c0 Mon Sep 17 00:00:00 2001
|
|
From: Akshay Adhikari <aadhikar@redhat.com>
|
|
Date: Tue, 17 Feb 2026 17:40:44 +0530
|
|
Subject: [PATCH] Issue 6758 - Fix Enable Replication dropdown not opening
|
|
(#7262)
|
|
|
|
Description: Removed hardcoded isOpen={false} and empty onToggle handler that
|
|
prevented dropdown from opening. Let component manage its own state.
|
|
|
|
Relates: #6758
|
|
|
|
Reviewed by: @vashirov
|
|
---
|
|
src/cockpit/389-console/src/lib/replication/replModals.jsx | 2 --
|
|
1 file changed, 2 deletions(-)
|
|
|
|
diff --git a/src/cockpit/389-console/src/lib/replication/replModals.jsx b/src/cockpit/389-console/src/lib/replication/replModals.jsx
|
|
index ba4859617..83a8b75a5 100644
|
|
--- a/src/cockpit/389-console/src/lib/replication/replModals.jsx
|
|
+++ b/src/cockpit/389-console/src/lib/replication/replModals.jsx
|
|
@@ -1757,8 +1757,6 @@ export class EnableReplModal extends React.Component {
|
|
handleChange(syntheticEvent);
|
|
}}
|
|
options={[_("Supplier"), _("Hub"), _("Consumer")]}
|
|
- isOpen={false}
|
|
- onToggle={() => {}}
|
|
placeholder={_("Select role...")}
|
|
ariaLabel="Replication role selection"
|
|
isMulti={false}
|
|
--
|
|
2.52.0
|
|
|