Skip to content

Commit

Permalink
fix(dashboard): enable rewards chart (#694)
Browse files Browse the repository at this point in the history
BEDS-227
  • Loading branch information
MauserBitfly authored Aug 12, 2024
1 parent 59c000c commit 20f82be
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ const {
const cursor = ref<Cursor>()
const pageSize = ref<number>(10)
const { t: $t } = useTranslation()
const showInDevelopment = Boolean(useRuntimeConfig().public.showInDevelopment)
const {
getRewards,
Expand Down Expand Up @@ -164,7 +163,6 @@ const wrappedRewards = computed(() => {
: 'dashboard.validator.rewards.search_placeholder',
)
"
:chart-disabled="!showInDevelopment"
@set-search="setSearch"
>
<template #table>
Expand Down Expand Up @@ -321,7 +319,7 @@ const wrappedRewards = computed(() => {
</template>
<template #chart>
<div class="chart-container">
<DashboardChartRewardsChart v-if="showInDevelopment" />
<DashboardChartRewardsChart />
</div>
</template>
</BcTableControl>
Expand Down

0 comments on commit 20f82be

Please sign in to comment.