Tobias Wochinger
Tobias Wochinger
`meta` also shouldn't be empty, right?
Is it hard to get the context back? I think that would avoid that we need to send the entire document over for the preview (would be a workaround though)....
@julian-risch @sjrl And what about the `meta` field? That one should come from the retrieved document, no?
That would be great 🙌🏻
@alwx Do you think this might be caused by the recent changes to Markdown lookup tables? 🤔
@Master1376 This seems to be an issue with your form implementation. Please ask questions in the [Rasa Forum](https://forum.rasa.com/)
I am interested in such a feature as well!
I forked the project, as I probably need a whole bunch of of new features for an uni project (e.g. pipeling http requests, enhanced lists). Doing this, I enhanced the...
Thanks for your swift responses 🙌🏻 So if I understand that correctly, you suggest this is not an issue because the Renderer is taking care of representing the data correctly?...
yes 😍 Super cool contribution! Only nit pick: ``` f"{component_type} {component_name}".strip() ``` how about something like ``` f"{component_name} ({component_type})".strip() ``` or maybe also ``` f"{component_type}: {component_name}".strip() ```