Display asset circulating amount more nicely fixing overflow

fixes #1264
This commit is contained in:
softsimon
2022-02-21 22:33:03 +04:00
parent dd42f39ef6
commit b61450995a
4 changed files with 32 additions and 7 deletions

View File

@@ -73,6 +73,7 @@ import { MiningDashboardComponent } from './components/mining-dashboard/mining-d
import { DifficultyChartComponent } from './components/difficulty-chart/difficulty-chart.component';
import { HashrateChartComponent } from './components/hashrate-chart/hashrate-chart.component';
import { MiningStartComponent } from './components/mining-start/mining-start.component';
import { AmountShortenerPipe } from './shared/pipes/amount-shortener.pipe';
@NgModule({
declarations: [
@@ -128,6 +129,7 @@ import { MiningStartComponent } from './components/mining-start/mining-start.com
DifficultyChartComponent,
HashrateChartComponent,
MiningStartComponent,
AmountShortenerPipe,
],
imports: [
BrowserModule.withServerTransition({ appId: 'serverApp' }),