-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
Implement PasswordNagBar #3817
Implement PasswordNagBar #3817
Conversation
This will tell the user that they need to set a password to return to their account.
const AccessibleButton = sdk.getComponent('elements.AccessibleButton'); | ||
return ( | ||
<div className="mx_MatrixToolbar"> | ||
<img className="mx_MatrixToolbar_warning" src="img/warning.svg" width="24" height="23" alt="/!\"/> |
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.
I think you want two backslashes at the end here (as this is an escaped double quote) (and yes, it was probably wrong in wherever you copied it from) (or possibly replace it with something more screenreader-friendly than, "forward slash, exclamation mark, backslash")
src/component-index.js
Outdated
@@ -19,9 +20,6 @@ limitations under the License. | |||
* You can edit it you like, but your changes will be overwritten, | |||
* so you'd just be trying to swim upstream like a salmon. | |||
* You are not a salmon. | |||
* | |||
* To update it, run: | |||
* ./reskindex.js -h header |
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.
Your PRs are getting crossed ;)
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.
poop
This will tell the user that they need to set a password to return to their account.
Part of #3602