xxxxxxxxxx
1
2
<h4>Test</h4>
3
<mdb-select
4
[options]="tournamentTypeOptions"
5
[filterEnabled]="true"
6
class="colorful-select dropdown-dark"
7
[customClass]="'white-text'"
8
>
9
</mdb-select>
10
<label for="type" class="white-text" style="z-index: 1;">Tournament Type</label>
1
1
xxxxxxxxxx
1
import { Component } from '@angular/core';
2
3
@Component({
4
selector: 'app-root',
5
templateUrl: './app.component.html',
6
styleUrls: ['./app.component.scss']
7
})
8
export class AppComponent {
9
title = 'app';
10
11
tournamentTypeOptions = [
12
{value: 1, label: 'Tip 1'},
13
{value: 2, label: 'Tip 2'}
14
];
15
}
16
Console errors: 0