Adds donate component

Adds FAB to dashboard
Adds slack to sidebar
This commit is contained in:
GloriousCode
2017-11-30 17:54:45 +11:00
parent b35c6b65bc
commit 420d65a5eb
14 changed files with 65 additions and 7 deletions

View File

@@ -64,11 +64,11 @@
</mat-form-field>
<div mat-line></div>
<mat-panel-description>
Enabled Currency pairs {{enabledCurrencies.selectedOptions.selected.length}}
Enabled Currency pairs {{enabledCurrencies.selectedOptions.selected.length}} - Managed via config temporarily
</mat-panel-description>
<div mat-line></div>
<mat-selection-list #enabledCurrencies>
<mat-list-option [disabled]="!exchange.Enabled" *ngFor="let currency of exchange.AvailablePairs.split(',')">
<mat-list-option [disabled]="!exchange.Enabled || true" *ngFor="let currency of exchange.AvailablePairs.split(',')">
{{currency}}
</mat-list-option>
</mat-selection-list>