Browse Source

Remove null coalescing.

pull/6090/head
Eduardo Almeida 4 days ago
parent
commit
76a37a2576
  1. 4
      apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html

4
apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html

@ -71,10 +71,10 @@
type="button" type="button"
[disabled]=" [disabled]="
!adminMarketDataService.hasPermissionToDeleteAssetProfile({ !adminMarketDataService.hasPermissionToDeleteAssetProfile({
activitiesCount: assetProfile?.activitiesCount ?? 0, activitiesCount: assetProfile?.activitiesCount,
isBenchmark: isBenchmark, isBenchmark: isBenchmark,
symbol: data.symbol, symbol: data.symbol,
watchedByCount: assetProfile?.watchedByCount ?? 0 watchedByCount: assetProfile?.watchedByCount
}) })
" "
(click)=" (click)="

Loading…
Cancel
Save