-
-
Notifications
You must be signed in to change notification settings - Fork 19
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
Emoji displaying #7
Comments
Which plugin or library did you used for select box? May be the plugin issue? |
It's angular material ) |
Could you show your code here? <mat-form-field appearance="fill">
<mat-label>Country Codes</mat-label>
<mat-select>
<mat-option *ngFor="let list of countryLists" [value]="list.dial_code">
{{list.flag}} {{list.dial_code}}
</mat-option>
</mat-select>
</mat-form-field> import { Component } from '@angular/core';
//@ts-ignore
import CountryList from 'country-list-with-dial-code-and-flag'
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
title = 'my-app-angular';
countryLists = CountryList.getList();
} |
Maybe you have met some unexpected behaviour with emojis?) |
It's Windows problem. Everyone who has linix/mac - sees emoji. Windows - no. |
There are svg and png format available here in this repo. |
Have used this polyfill |
Removed pollyfill as its working only with cdn. component:
});` |
New version
|
I see, that you've already answered on issues like that, but it IS here. They are partially displayed. And when they are not, the text is displayed. Like on the attached screenshot. I am using Angular.
The text was updated successfully, but these errors were encountered: