From ae1e2d0e1e6d973a6b1bbce359fed1ba66edc4e6 Mon Sep 17 00:00:00 2001 From: Luke Stanley Date: Wed, 17 Jul 2024 16:45:15 +0100 Subject: [PATCH] Documentation: Clarify Link Action block override behaviour --- docs/workflow/blocks/link_action_block.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/workflow/blocks/link_action_block.rst b/docs/workflow/blocks/link_action_block.rst index 7ea052f0f..96afbbd07 100644 --- a/docs/workflow/blocks/link_action_block.rst +++ b/docs/workflow/blocks/link_action_block.rst @@ -32,9 +32,9 @@ Supported Properties -------------------- - **label** (string): The text displayed on the button-like link. Defaults to "Link". -- **adapterName** (string): The adapter name of the target workflow. This property is used if `adapterNameGetter` is not specified. +- **adapterName** (string): The adapter name of the target workflow. This property is ignored if a value is specified by `adapterNameGetter` instead. - **adapterNameGetter** (string): A JMESPath expression that resolves to the adapter name of the target workflow. This allows for dynamic resolution of the adapter name from the data and context. If not set, will use the `adapterName` property instead. -- **workflowId** (string): The workflow ID of the target workflow. This property is used if `workflowIdGetter` is not specified. +- **workflowId** (string): The workflow ID of the target workflow. This property is ignored if a value is specified by `workflowIdGetter` instead. - **workflowIdGetter** (string): A JMESPath expression that resolves to the workflow ID of the target workflow. This allows for dynamic resolution of the workflow ID from the data and context. If not set, will use the `workflowId` property instead. Usage -----