File tree Expand file tree Collapse file tree 3 files changed +5
-6
lines changed
browser/components/protections/content Expand file tree Collapse file tree 3 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -241,7 +241,6 @@ module.exports = {
241
241
"browser/components/preferences/**" ,
242
242
"browser/components/privatebrowsing/**" ,
243
243
"browser/components/prompts/PromptCollection.sys.mjs" ,
244
- "browser/components/protections/content/*-card.mjs" ,
245
244
"browser/components/protocolhandler/WebProtocolHandlerRegistrar.sys.mjs" ,
246
245
"browser/components/safebrowsing/content/test/**" ,
247
246
"browser/components/screenshots/**" ,
Original file line number Diff line number Diff line change @@ -94,9 +94,9 @@ export default class LockwiseCard {
94
94
/**
95
95
* Displays strings indicating stored logins for a user.
96
96
*
97
- * @param {Number } storedLogins
97
+ * @param {number } storedLogins
98
98
* The number of browser-stored logins.
99
- * @param {Number } potentiallyBreachedLogins
99
+ * @param {number } potentiallyBreachedLogins
100
100
* The number of potentially breached logins.
101
101
*/
102
102
renderContentForLoggedInUser ( storedLogins , potentiallyBreachedLogins ) {
Original file line number Diff line number Diff line change @@ -145,7 +145,7 @@ export default class MonitorClass {
145
145
146
146
/**
147
147
* Retrieves the monitor data and displays this data in the card.
148
- ** /
148
+ */
149
149
getMonitorData ( ) {
150
150
RPMSendQuery ( "FetchMonitorData" , { } ) . then ( monitorData => {
151
151
// Once data for the user is retrieved, display the monitor card.
@@ -190,11 +190,11 @@ export default class MonitorClass {
190
190
* Builds the appropriate URL that takes the user to the Monitor website's
191
191
* sign-up/sign-in page.
192
192
*
193
- * @param {String| null } email
193
+ * @param {string | null } email
194
194
* Optional. The email used to direct the user to the Monitor website's OAuth
195
195
* sign-in flow. If null, then direct user to just the Monitor website.
196
196
*
197
- * @return URL to Monitor website.
197
+ * @returns { string } URL to Monitor website.
198
198
*/
199
199
buildMonitorUrl ( email = null ) {
200
200
return email
You can’t perform that action at this time.
0 commit comments