Hi, I am currently using a Blocking Callback Transform in my dash app, and am having trouble determining which prop triggered said callback. I am currently trying to get the changed prop id using this line of code
changed_ids = [p['prop_id'] for p in dash.callback_context.triggered]
but this gives me a prop_id of [{'prop_id': 'e3dbfba0-9d54-43f9-988b-de6e50207200_start_client.data', 'value': 1669217063820}]
Is there a way to parse the callback context? Thanks