I have added the debounce keyword argument to the create_number_input method which creates number inputs for the dash app. This causes the web widgets to call the callback only when either the input is unfocused or enter is pressed. Thus we have a smoother user experience.
I have added the
debounce
keyword argument to thecreate_number_input
method which creates number inputs for the dash app. This causes the web widgets to call the callback only when either the input is unfocused or enter is pressed. Thus we have a smoother user experience.