Browse Source

Clean up

pull/4825/head
Thomas Kaul 3 weeks ago
parent
commit
f353a40327
  1. 3
      apps/client/src/app/components/admin-settings/admin-settings.component.html
  2. 2
      apps/client/src/app/components/admin-settings/admin-settings.module.ts

3
apps/client/src/app/components/admin-settings/admin-settings.component.html

@ -48,12 +48,13 @@
</ng-container> </ng-container>
<ng-container matColumnDef="assetProfileCount"> <ng-container matColumnDef="assetProfileCount">
<th *matHeaderCellDef class="px-1 py-2 justify-content-end" mat-header-cell> <th *matHeaderCellDef class="px-1 py-2 text-right" mat-header-cell>
<ng-container i18n>Asset Profiles</ng-container> <ng-container i18n>Asset Profiles</ng-container>
</th> </th>
<td *matCellDef="let element" class="px-1 py-2 text-right" mat-cell> <td *matCellDef="let element" class="px-1 py-2 text-right" mat-cell>
<gf-value <gf-value
class="d-inline-block justify-content-end" class="d-inline-block justify-content-end"
[locale]="user?.settings?.locale"
[value]="element.assetProfileCount" [value]="element.assetProfileCount"
/> />
</td> </td>

2
apps/client/src/app/components/admin-settings/admin-settings.module.ts

@ -2,6 +2,7 @@ import { GfAdminPlatformModule } from '@ghostfolio/client/components/admin-platf
import { GfAdminTagModule } from '@ghostfolio/client/components/admin-tag/admin-tag.module'; import { GfAdminTagModule } from '@ghostfolio/client/components/admin-tag/admin-tag.module';
import { GfEntityLogoComponent } from '@ghostfolio/ui/entity-logo'; import { GfEntityLogoComponent } from '@ghostfolio/ui/entity-logo';
import { GfPremiumIndicatorComponent } from '@ghostfolio/ui/premium-indicator'; import { GfPremiumIndicatorComponent } from '@ghostfolio/ui/premium-indicator';
import { GfValueComponent } from '@ghostfolio/ui/value';
import { CommonModule } from '@angular/common'; import { CommonModule } from '@angular/common';
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';
@ -22,6 +23,7 @@ import { AdminSettingsComponent } from './admin-settings.component';
GfAdminTagModule, GfAdminTagModule,
GfEntityLogoComponent, GfEntityLogoComponent,
GfPremiumIndicatorComponent, GfPremiumIndicatorComponent,
GfValueComponent,
MatButtonModule, MatButtonModule,
MatMenuModule, MatMenuModule,
MatProgressBarModule, MatProgressBarModule,

Loading…
Cancel
Save