Skip to content

Commit

Permalink
chore(NotificationsDashboardTable): hide account subscriptions behi…
Browse files Browse the repository at this point in the history
…nd `feature flag`
  • Loading branch information
marcel-bitfly authored and benji-bitfly committed Oct 21, 2024
1 parent 546b833 commit d5103c1
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions frontend/components/notifications/NotificationsDashboardsTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -297,14 +297,18 @@ const showDialog = (row: { identifier: string } & NotificationDashboardsTableRow

}}
</div>
<div>
{{
$t(
"notifications.dashboards.footer.subscriptions.accounts",
{ count: overview?.adb_subscriptions_count })
<BcFeatureFlag
feature="feature-account_dashboards"
>
<div>
{{
$t(
"notifications.dashboards.footer.subscriptions.accounts",
{ count: overview?.adb_subscriptions_count })

}}
</div>
}}
</div>
</BcFeatureFlag>
</template>
</template>
</BcTable>
Expand Down

0 comments on commit d5103c1

Please sign in to comment.