-
Notifications
You must be signed in to change notification settings - Fork 789
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
Settings page improvements #567
Conversation
alalamav
commented
Feb 4, 2020
•
edited
Loading
edited
- Replaces the data limits toggle with a dropdown in the settings page.
- Moves the experiment feedback link closer to the data limits feature.
- Replaces the metrics toggle with a checkbox.
- Re-introduces accidentally deleted behavior to watch keystrokes on the data limit input field.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, thanks Alberto!
src/server_manager/web_app/app.ts
Outdated
}); | ||
private async setMetricsEnabled(metricsEnabled: boolean) { | ||
try { | ||
this.selectedServer.setMetricsEnabled(metricsEnabled); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Isn't this call asynchronous? Don't you need to wait?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good catch, fixed in 97d7c32.