Avaiga / taipy

Turns Data and AI algorithms into production-ready web applications in no time.
https://www.taipy.io
Apache License 2.0
14.23k stars 1.7k forks source link

Input lagging in Login control #1440

Closed FlorianJacta closed 3 months ago

FlorianJacta commented 3 months ago

Description

The login control will lag when the application is deployed in some way. It will be difficult to write in the text inputs and make the login control unusable.

This seems to be related to https://github.com/Avaiga/taipy/issues/610

Acceptance Criteria

Code of Conduct

FredLL-Avaiga commented 3 months ago

Is there a server where we could deploy an example provided by @FlorianJacta ? @florian-vuillemot @FabienLelaquais ?

AlexandreSajus commented 3 months ago

Can't reproduce in Taipy 3.1.1.

You can try triggering the bug here: https://login-bug.taipy.cloud/

from taipy.gui import Gui

username = ""

def on_login(state, id, login_args):
    username, password = login_args["args"][:2]
    state.username = username

page = """
<|Welcome to Taipy!|login|>

<|{username}|text|>
"""

Gui(page).run()
FabienLelaquais commented 3 months ago

To me that works fine! (1 A.M. Paris time - could be a reason with low traffic)

FlorianJacta commented 3 months ago

Works fine for me too!

FredLL-Avaiga commented 3 months ago

Should one close it then ?