We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
wave 0.22.0
ui.file_upload doesn't show proper file names in success message (Shows "." if 1 file was uploaded and adds a "," per additional file)
ui.file_upload
ui.file_upload shows proper file names in success message
Run the following app and upload 1 or more files:
from h2o_wave import Q, app, main, ui # noqa F401 @app("/") async def serve(q: Q): if not q.client.init: q.page["meta"] = ui.meta_card(box="") await q.page.save() q.page["meta"].dialog = ui.dialog( title="Import Datasets", primary=True, items=[ ui.file_upload( name="file_import", label="Import", multiple=True, file_extensions=["csv", "gz", "zip", "tar"], ), ui.button(name="close_dialog", icon="Cancel"), ], ) await q.page.save() q.client.init = True
The text was updated successfully, but these errors were encountered:
fix: Show uploaded files after successful file upload (#1611) #1607
418b482
marek-mihok
Successfully merging a pull request may close this issue.
Wave SDK Version, OS
wave 0.22.0
Actual behavior
ui.file_upload
doesn't show proper file names in success message(Shows "." if 1 file was uploaded and adds a "," per additional file)
Expected behavior
ui.file_upload
shows proper file names in success messageSteps To Reproduce
Run the following app and upload 1 or more files:
The text was updated successfully, but these errors were encountered: