Skip to content

Commit

Permalink
Skrivbar is back
Browse files Browse the repository at this point in the history
  • Loading branch information
oleanders committed Mar 14, 2024
1 parent 89b7338 commit b4d2045
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
10 changes: 6 additions & 4 deletions client/app/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@ import { FormsModule } from '@angular/forms';
// import { MaterialModule } from '@angular/material';
import { MatProgressSpinnerModule } from '@angular/material/progress-spinner';
import { FontAwesomeModule, FaIconLibrary } from '@fortawesome/angular-fontawesome';
import { faThumbtack, faCaretRight, faArrowRight, faCaretDown, faTable, faListAlt, faIdCard, faBars, faPuzzlePiece, faForward } from '@fortawesome/free-solid-svg-icons';
import {
faThumbtack, faCaretRight, faArrowRight, faCaretDown, faTable, faListAlt, faIdCard,
faBars, faPuzzlePiece, faForward, faCheck
} from '@fortawesome/free-solid-svg-icons';
import { HttpClientModule } from '@angular/common/http';

// import { LibSharedModule } from 'fint-shared-components';
Expand All @@ -30,8 +33,6 @@ import { MarkdownToHtmlPipe } from './EA/mapper/MarkdownToHtml.pipe';
BrowserAnimationsModule,
FormsModule,
HttpClientModule,
// MaterialModule,
// LibSharedModule,
FontAwesomeModule,
MatProgressSpinnerModule,
AppRoutingModule,
Expand All @@ -43,6 +44,7 @@ import { MarkdownToHtmlPipe } from './EA/mapper/MarkdownToHtml.pipe';

export class AppModule {
constructor(library: FaIconLibrary) {
library.addIcons(faThumbtack, faCaretRight, faArrowRight, faCaretDown, faTable, faListAlt, faIdCard, faBars, faPuzzlePiece, faForward);
library.addIcons(faThumbtack, faCaretRight, faArrowRight, faCaretDown, faTable, faListAlt, faIdCard,
faBars, faPuzzlePiece, faForward, faCheck);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ <h3>Felter</h3>
(click)="openAttribute(attribute)">{{ attribute.multiplicity }}
</td>
<td class="{{attribute.deprecated ? 'deprecated writable' : 'writable'}}">
<fa-icon name="check" fw="true" *ngIf="attribute.writable === true"></fa-icon>
<fa-icon [icon]="'check'" fw="true" *ngIf="attribute.writable === true"></fa-icon>
</td>
<td class="description"
(click)="openAttribute(attribute)">
Expand Down

0 comments on commit b4d2045

Please sign in to comment.