Hello! We have encountered the following issue: if a text input component is used inside "pages", it will go out of focus every time a new character is entered. Another issue, is that input is also shared between input text components on different pages, until you edit each of them.
import prodigy
@prodigy.recipe('minimal-example')
def minimal_example():
stream = (
{
'id': i,
'pages': [
{'view_id': 'text_input', 'field_id': 'user_input', 'field_placeholder': 'Enter text here...'}
for _ in range(5)
]
}
for i in range(10)
)
stream_with_hashes = (
prodigy.set_hashes(example)
for example in stream
)
return {
'dataset': 'test',
'view_id': 'pages',
'stream': stream_with_hashes,
}
Are we doing something incorrectly?
Thank you