This commit is contained in:
root 2019-08-12 19:05:41 +05:30
commit 0c7b61e7b1
3 changed files with 7 additions and 5 deletions

View File

@ -17,6 +17,7 @@
"EXPLORE_IT": "Entdecke", "EXPLORE_IT": "Entdecke",
"VIEWALL": "Alle Diagramme anzeigen", "VIEWALL": "Alle Diagramme anzeigen",
"BLOCKCHAIN_HEIGHT": "Blockchain Höhe", "BLOCKCHAIN_HEIGHT": "Blockchain Höhe",
"LATEST_BLOCKS" : "Letzter Blocks",
"LATEST_BLOCK": "Letzter Block", "LATEST_BLOCK": "Letzter Block",
"LATEST_BLOCK1": "Aktuelle Zielschwierigkeit", "LATEST_BLOCK1": "Aktuelle Zielschwierigkeit",
"LATEST_BLOCK2": "Aktuelle Gesamtschwierigkeit", "LATEST_BLOCK2": "Aktuelle Gesamtschwierigkeit",

View File

@ -17,6 +17,7 @@
"EXPLORE_IT": "Explore", "EXPLORE_IT": "Explore",
"VIEWALL": "View All Charts", "VIEWALL": "View All Charts",
"BLOCKCHAIN_HEIGHT": "Blockchain Height", "BLOCKCHAIN_HEIGHT": "Blockchain Height",
"LATEST_BLOCKS" : "Latest Blocks",
"LATEST_BLOCK": "Latest Block", "LATEST_BLOCK": "Latest Block",
"LATEST_BLOCK1": "Current Target Difficulty", "LATEST_BLOCK1": "Current Target Difficulty",
"LATEST_BLOCK2": "Current Total Difficulty", "LATEST_BLOCK2": "Current Total Difficulty",

View File

@ -1,5 +1,5 @@
<div class="latest_table"> <div class="latest_table">
<h2 class="mb-3 chart_heading px-0">{{'home.LATEST_BLOCK' | translate}}</h2> <h2 class="mb-3 chart_heading px-0">{{'home.LATEST_BLOCKS' | translate}}</h2>
<div class="mobile_table web_hdng"> <div class="mobile_table web_hdng">
<div class="row"> <div class="row">
@ -46,9 +46,9 @@
</div> </div>
</div> </div>
<div #block></div> <div #block></div>
<!-- <ng-container #block></ng-container> --> <ng-container *ngFor="let hashvalue of hashvalues">
<div [ngClass]="{mobile_table : true, hght_40: item.id != clickValue }" <div *ngIf="hashvalue.target_difficulty_cuckatoo != '0'" [ngClass]="{mobile_table : true, hght_40: item.id != clickValue }"
id="hash_{{hashvalue.blockchain_block_height}}" #item *ngFor="let hashvalue of hashvalues"> id="hash_{{hashvalue.blockchain_block_height}}" #item >
<div class="row"> <div class="row">
<div class="col-6 col-md-3 tble_col"> <div class="col-6 col-md-3 tble_col">
@ -108,7 +108,7 @@
</div> --> </div> -->
</div> </div>
</div> </div>
</ng-container>
</div> </div>