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 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>
</th>
<td *matCellDef="let element" class="px-1 py-2 text-right" mat-cell>
<gf-value
class="d-inline-block justify-content-end"
[locale]="user?.settings?.locale"
[value]="element.assetProfileCount"
/>
</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 { GfEntityLogoComponent } from '@ghostfolio/ui/entity-logo';
import { GfPremiumIndicatorComponent } from '@ghostfolio/ui/premium-indicator';
import { GfValueComponent } from '@ghostfolio/ui/value';
import { CommonModule } from '@angular/common';
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';
@ -22,6 +23,7 @@ import { AdminSettingsComponent } from './admin-settings.component';
GfAdminTagModule,
GfEntityLogoComponent,
GfPremiumIndicatorComponent,
GfValueComponent,
MatButtonModule,
MatMenuModule,
MatProgressBarModule,

Loading…
Cancel
Save