Skip to content
This repository has been archived by the owner on Dec 11, 2019. It is now read-only.

Commit

Permalink
Fix small misspelling in urlbar icon
Browse files Browse the repository at this point in the history
I missed this with #6319
but our tests caught it :)

Auditors: @gyandeeps
  • Loading branch information
bsclifton committed Jan 19, 2017
1 parent 9d038a4 commit cdf90cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/renderer/components/urlBarIcon.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const getIconCssClass = (ctx) => {
} else if (ctx.isSecure) {
// NOTE: EV style not approved yet; see discussion at https://github.com/brave/browser-laptop/issues/791
return 'fa-lock'
} else if (ctx.inInsecure) {
} else if (ctx.isInsecure) {
return 'fa-unlock'
}
}
Expand Down

1 comment on commit cdf90cc

@gyandeeps
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM.

Please sign in to comment.