We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The titles within the category header display angular code instead of the (localized) name. This can be seen in the official demo. I suppose the error is because of the following line: https://github.com/TypeCtrl/ngx-emoji-mart/blob/27c3c3532d04f9179b752c51584aae078060c15d/src/lib/picker/anchors.component.ts#L19 This binding doesn't evaluate and simply uses provided string. To solve this issue you would have to write
title="{{i18n.categories[category.id]}}"
or
[attr.title]="i18n.categories[category.id]"
As the i18n object doesn't exist in the anchors.component yet, that would also have to be added
The text was updated successfully, but these errors were encountered:
a8d02f3
🎉 This issue has been resolved in version 0.2.1 🎉
The release is available on:
Your semantic-release bot 📦🚀
Sorry, something went wrong.
scttcper
No branches or pull requests
The titles within the category header display angular code instead of the (localized) name. This can be seen in the official demo. I suppose the error is because of the following line:
https://github.com/TypeCtrl/ngx-emoji-mart/blob/27c3c3532d04f9179b752c51584aae078060c15d/src/lib/picker/anchors.component.ts#L19
This binding doesn't evaluate and simply uses provided string. To solve this issue you would have to write
or
As the i18n object doesn't exist in the anchors.component yet, that would also have to be added
The text was updated successfully, but these errors were encountered: