Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1343)

Unified Diff: chrome/browser/resources/chromeos/login/oobe_screen_oauth_enrollment.js

Issue 2909503003: WebUI: Enable ESLint rule for missing semicolons. (Closed)
Patch Set: Undo local_ntp changes from this CL. Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/chromeos/login/oobe_screen_oauth_enrollment.js
diff --git a/chrome/browser/resources/chromeos/login/oobe_screen_oauth_enrollment.js b/chrome/browser/resources/chromeos/login/oobe_screen_oauth_enrollment.js
index 2ff4fa3cbfa76af271ef798441ce3d6320a5afaa..183abf44bae2c00269c6de73f8ffb972c1033f7f 100644
--- a/chrome/browser/resources/chromeos/login/oobe_screen_oauth_enrollment.js
+++ b/chrome/browser/resources/chromeos/login/oobe_screen_oauth_enrollment.js
@@ -51,7 +51,7 @@ login.createScreen('OAuthEnrollmentScreen', 'oauth-enrollment', function() {
*/
isCancelDisabled_: null,
- get isCancelDisabled() { return this.isCancelDisabled_ },
+ get isCancelDisabled() { return this.isCancelDisabled_; },
set isCancelDisabled(disabled) {
this.isCancelDisabled_ = disabled;
},

Powered by Google App Engine
This is Rietveld 408576698