From 4823cff3a683cde597765f9cd8f44b2e053830e6 Mon Sep 17 00:00:00 2001 From: mohamedaleya Date: Mon, 31 Jul 2023 01:35:21 +0100 Subject: [PATCH] fix #2338 sidebar dropdown stays open after sidebar is closed --- client/modules/IDE/components/Editor.jsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/client/modules/IDE/components/Editor.jsx b/client/modules/IDE/components/Editor.jsx index e07c16b1a0..1f1e5a184e 100644 --- a/client/modules/IDE/components/Editor.jsx +++ b/client/modules/IDE/components/Editor.jsx @@ -500,7 +500,10 @@ class Editor extends React.Component { @@ -588,6 +591,7 @@ Editor.propTypes = { ).isRequired, isExpanded: PropTypes.bool.isRequired, collapseSidebar: PropTypes.func.isRequired, + closeProjectOptions: PropTypes.func.isRequired, expandSidebar: PropTypes.func.isRequired, clearConsole: PropTypes.func.isRequired, hideRuntimeErrorWarning: PropTypes.func.isRequired,