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
Not sure what I'm doing wrong but It's not recognizing the fa directive. On an Angular 5 app (soon to be upgraded to NG 6)
<fa *ngIf="!weatherData" [name]="'spinner'" [spin]=true ></fa>
Full Code Available Here
It says
'fa' is not a known element: 1. If 'fa' is an Angular component, then verify that it is part of this module.
In my app.module.ts I have
app.module.ts
import { BrowserModule } from '@angular/platform-browser'; import { FormsModule } from '@angular/forms'; import { HttpModule } from '@angular/http'; import { NgModule } from '@angular/core'; import { Angular2FontawesomeModule } from 'angular2-fontawesome/angular2-fontawesome'; import { AppComponent } from './app.component'; import { TemperaturePipe } from './temperature.pipe'; import { WeatherService } from './services/weather.service'; @NgModule({ declarations: [ AppComponent, TemperaturePipe ], imports: [ BrowserModule, FormsModule, HttpModule, Angular2FontawesomeModule ], providers: [ WeatherService ], bootstrap: [AppComponent] }) export class AppModule { }
The text was updated successfully, but these errors were encountered:
I have the same problem
Sorry, something went wrong.
resolved by replacing <fa></fa> with <i fa></i>
<fa></fa>
<i fa></i>
No branches or pull requests
Not sure what I'm doing wrong but It's not recognizing the fa directive. On an Angular 5 app (soon to be upgraded to NG 6)
Full Code Available Here
It says
In my
app.module.ts
I haveThe text was updated successfully, but these errors were encountered: