-
Notifications
You must be signed in to change notification settings - Fork 124
New issue
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
Message alert displays very slow #33
Comments
GrishmaM
changed the title
Cannot read property 'setNewState' of null
Message alert displays very slow
May 16, 2017
me too. even if durationToShow set to 0. |
durationToShow: props.durationToShow || 350 is not right.but when i set to 1, displays always very slow |
ctrl + T is solve |
duration: props.duration || 3000, this statement is wrong(when duration is 0). the right: duration: props.duration !== 'undefined' ? props.duration : 3000 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
After my api call i'm setting the error message to messageBar, but it take too long to appear on screen
y is it so ?
The text was updated successfully, but these errors were encountered: