diff --git a/docs/docs/Components/concepts-components.mdx b/docs/docs/Components/concepts-components.mdx
index 92783b580eb6..38e982652157 100644
--- a/docs/docs/Components/concepts-components.mdx
+++ b/docs/docs/Components/concepts-components.mdx
@@ -34,7 +34,13 @@ After adding a component to a flow, configure the component's parameters and con
Each component has inputs, outputs, parameters, and controls related to the component's purpose.
By default, components show only required and common options.
-To access additional settings and controls, including meta settings, use the [component's header menu](#component-header-menus).
+To access additional settings and controls, including meta settings, use the [component inspection panel](#component-inspection-panel).
+
+### Component inspection panel {#component-inspection-panel}
+
+When you select a component in the workspace, a component inspection panel appears on the right side of the screen.
+
+The inspection panel displays all of a component's parameters, including hidden or advanced parameters.
### Component header menus
@@ -42,11 +48,10 @@ To access a component's header menu, click the component in your workspace.

-A few options are available directly on the header menu.
-For example:
+The following options are available directly on the header menu:
- **Code**: Modify component settings by directly editing the component's Python code.
-- **Controls**: Adjust all component parameters, including optional settings that are hidden by default.
+- **Freeze**: Freeze a component and all upstream components to prevent re-running. For more information, see [Freeze a component](#freeze-a-component).
- **Tool Mode**: Enable this option when combining a component with an **Agent** component.
For all other options, including **Delete** and **Duplicate** controls, click **Show More**.
@@ -78,7 +83,7 @@ Use the freeze option if you expect consistent output from a component _and all
Freezing a component prevents that component and all upstream components from re-running, and it preserves the last output state for those components.
Any future flow runs use the preserved output.
-To freeze a component, click the component in the workspace to expose the component's header menu, click **Show More**, and then select **Freeze**.
+To freeze a component, click the component in the workspace to expose the component's header menu, and then click **Freeze**.
## Component ports
diff --git a/docs/docs/Support/release-notes.mdx b/docs/docs/Support/release-notes.mdx
index e5fbdd5dd285..6e28ea7140c6 100644
--- a/docs/docs/Support/release-notes.mdx
+++ b/docs/docs/Support/release-notes.mdx
@@ -87,6 +87,11 @@ For all changes, see the [Changelog](https://github.com/langflow-ai/langflow/rel
Model providers for language models, embedding models, and agents are now configured globally in the **Model providers** pane, instead of within individual components.
For more information, see the [Language Model component](/components-models).
+- Component inspection panel
+
+ The component inspection panel replaces the component header menu for managing component parameters and settings.
+ For more information, see [Component inspection panel](/concepts-components#component-inspection-panel).
+
- Mustache templating support for Prompt Template component
The **Prompt Template** component now supports Mustache templating syntax.
diff --git a/docs/docs/_partial-hidden-params.mdx b/docs/docs/_partial-hidden-params.mdx
index 8db9a0310152..35fddd476cc0 100644
--- a/docs/docs/_partial-hidden-params.mdx
+++ b/docs/docs/_partial-hidden-params.mdx
@@ -1,4 +1,2 @@
-import Icon from "@site/src/components/icon";
-
Some parameters are hidden by default in the visual editor.
-You can modify all parameters through the **Controls** in the [component's header menu](/concepts-components#component-menus).
\ No newline at end of file
+You can modify all component parameters through the [component inspection panel](/concepts-components#component-inspection-panel) that appears when you select a component.
\ No newline at end of file