Skip to content
This repository was archived by the owner on Jul 6, 2020. It is now read-only.

[GCI] Option for setting up decimal pecision #269

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -27,6 +27,17 @@
</mat-chip-list>
</mat-form-field>
<div class="error-message" *ngIf="isValidationError">{{message}}</div>
<div>
Set decimal precision for leaderboard:
<mat-slider
thumbLabel
[displayWith]="formatLabel"
tickInterval="1"
min="0"
max="10"
ngModel="2"></mat-slider>
<button mat-fab>Save</button>
</div>
</div>
</div>
</div>
Original file line number Diff line number Diff line change
@@ -38,3 +38,7 @@
.error-message {
color: $highlight;
}

mat-slider {
width: 300px;
}