From 08a3045d666c4dffc7ad0f23ff1d3e26aa9e2738 Mon Sep 17 00:00:00 2001 From: Jasey Waegebaert <38426621+Jwaegebaert@users.noreply.github.com> Date: Tue, 7 Dec 2021 12:52:21 +0100 Subject: [PATCH] TaxonomyPicker - Markdown table fix Issue within TaxonomyPicker documentation The table of the ITermAction interface contains a column issue. More specifically for the property 'applyToTerm' Fixed with a backslash --- docs/documentation/docs/controls/TaxonomyPicker.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/documentation/docs/controls/TaxonomyPicker.md b/docs/documentation/docs/controls/TaxonomyPicker.md index f53d374dd..0456cb9c2 100644 --- a/docs/documentation/docs/controls/TaxonomyPicker.md +++ b/docs/documentation/docs/controls/TaxonomyPicker.md @@ -224,7 +224,7 @@ Interface `ITermAction` | iconName | string | no | Name of the icon to be used to display action | | hidden | boolean | no | Specify if the action is hidden. This could be used for instance when you want to invoke the action right after rendering. | | invokeActionOnRender | boolean | no | Specifies if you want to invoke the action on render | -| applyToTerm | (currentTerm: ITerm, triggerActionCallback: (updateAction: UpdateAction) => void, setActionStateForTerm: (actionId: string, termId: string, type: "disabled" | "hidden", value: boolean) => void) => Promise\ \| boolean | yes | Method checks if the current term is supported for the action. The method provices a couple of additional callback functions to make it possibe to programatically change the terms and its actions. | +| applyToTerm | (currentTerm: ITerm, triggerActionCallback: (updateAction: UpdateAction) => void, setActionStateForTerm: (actionId: string, termId: string, type: "disabled" \| "hidden", value: boolean) => void) => Promise\ \| boolean | yes | Method checks if the current term is supported for the action. The method provices a couple of additional callback functions to make it possibe to programatically change the terms and its actions. | | actionCallback | (spTermService: SPTermStorePickerService, currentTerm: ITerm) => Promise\ | yes | Method to be executed when action is fired |