Browse Source

feat(client): enforce immutability

pull/7292/head
KenTandrian 5 days ago
parent
commit
d47ccab581
  1. 4
      apps/client/src/app/components/user-detail-dialog/user-detail-dialog.component.ts

4
apps/client/src/app/components/user-detail-dialog/user-detail-dialog.component.ts

@ -51,8 +51,8 @@ import {
export class GfUserDetailDialogComponent implements OnInit { export class GfUserDetailDialogComponent implements OnInit {
protected baseCurrency: string; protected baseCurrency: string;
protected readonly getCountryName = getCountryName; protected readonly getCountryName = getCountryName;
protected subscriptionsDataSource = new MatTableDataSource<Subscription>(); protected readonly subscriptionsDataSource = new MatTableDataSource<Subscription>();
protected subscriptionsDisplayedColumns = [ protected readonly subscriptionsDisplayedColumns = [
'createdAt', 'createdAt',
'type', 'type',
'price', 'price',

Loading…
Cancel
Save