From d357e18c3d3f924217ebb8e0bed396fdbe092c9c Mon Sep 17 00:00:00 2001 From: Prof-Rajat Date: Fri, 29 May 2026 10:44:06 +0530 Subject: [PATCH] docs: fix nested list formatting in tgb docstring #2779 --- taipy/gui/viselements.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/taipy/gui/viselements.json b/taipy/gui/viselements.json index 0e8fd1cda1..b0a9ceb4db 100644 --- a/taipy/gui/viselements.json +++ b/taipy/gui/viselements.json @@ -2079,7 +2079,7 @@ { "name": "on_action", "type": "Union[str, Callable]", - "doc": "A function or the name of a function that is triggered when a specific key is pressed.
The callback function is invoked with the following parameters:", + "doc": "A function or the name of a function that is triggered when a specific key is pressed.
The callback function is invoked with the following parameters:\n\n* *state* (`State^`): the state instance.\n* *id* (str): the identifier of the control if it has one.\n* *payload* (dict): the callback details\n This dictionary has the following keys:\n * *action*: the name of the action that triggered this callback.\n * *args* (list):\n * *[0]*: The key name pressed.\n * *[1]*: The variable name.\n * *[2]*: The current value of the variable.", "signature": [ ["state", "State"], ["id", "str"],