warn on re-index - fix hash indexing state issue - cleanup ui mining

This commit is contained in:
nymkappa
2022-02-24 20:20:18 +09:00
parent 54ccfe070e
commit ec40231f93
11 changed files with 45 additions and 53 deletions

View File

@@ -8,7 +8,7 @@
<div class="card-body">
<h5 class="card-title">
<a class="link" href="" [routerLink]="['/mining/hashrate/pools' | relativeUrl]" i18n="mining.pools-hashrate">
Pools Hashrate Share (1y)
Mining Pools Dominance (1y)
</a>
</h5>
<app-hashrate-chart-pools [widget]=true></app-hashrate-chart-pools>

View File

@@ -12,7 +12,7 @@
.card {
background-color: #1d1f31;
height: 100%;
height: 340px;
}
.card-title {

View File

@@ -1,4 +1,5 @@
import { ChangeDetectionStrategy, Component, OnInit } from '@angular/core';
import { SeoService } from 'src/app/services/seo.service';
@Component({
selector: 'app-mining-dashboard',
@@ -8,7 +9,9 @@ import { ChangeDetectionStrategy, Component, OnInit } from '@angular/core';
})
export class MiningDashboardComponent implements OnInit {
constructor() { }
constructor(private seoService: SeoService) {
this.seoService.setTitle($localize`:@@mining.mining-dashboard:Mining Dashboard`);
}
ngOnInit(): void {
}